remove 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/bash
  2. # PirateBox app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/labriqueinternet/piratebox_ynh
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. source ./helpers
  19. # Retrieve arguments
  20. domain=$(sudo yunohost app setting piratebox domain)
  21. # The End
  22. ynh_systemctl stop ynh-piratebox
  23. sudo systemctl disable ynh-piratebox
  24. sudo yunohost service remove ynh-piratebox
  25. sudo rm -f /etc/systemd/system/ynh-piratebox.service /usr/local/bin/ynh-piratebox
  26. sudo rm -f /tmp/.ynh-piratebox-*
  27. # Update firewall
  28. sudo yunohost firewall disallow UDP 4253
  29. sudo yunohost firewall disallow TCP 4280
  30. # Remove confs
  31. sudo rm -f /etc/nginx/captive-piratebox.conf
  32. sudo rm -f "/etc/nginx/conf.d/${domain}.d/piratebox.conf"
  33. sudo rm -f /etc/php5/fpm/pool.d/{captive-,}piratebox.conf
  34. # Delete fakedns
  35. sudo rm -f /usr/local/bin/piratebox_fakedns
  36. # Restart services
  37. sudo systemctl restart php5-fpm
  38. sudo systemctl reload nginx
  39. # Remove tmp folder
  40. sudo rm -rf /var/spool/piratebox/
  41. # Remove sources
  42. sudo rm -rf /var/www/piratebox/
  43. sudo rm -rf /var/www/piratebox_admin/
  44. exit 0