remove 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #!/bin/bash
  2. # Wifi Hotspot app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/labriqueinternet/hotspot_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. #=================================================
  19. # GENERIC STARTING
  20. #=================================================
  21. # IMPORT GENERIC HELPERS
  22. #=================================================
  23. source _common.sh
  24. source /usr/share/yunohost/helpers
  25. #=================================================
  26. # LOAD SETTINGS
  27. #=================================================
  28. app=$YNH_APP_INSTANCE_NAME
  29. domain=$(ynh_app_setting_get $app domain)
  30. firmware_nonfree=$(ynh_app_setting_get $app firmware_nonfree)
  31. # The End
  32. systemctl stop ynh-hotspot
  33. systemctl disable ynh-hotspot
  34. yunohost service remove ynh-hotspot
  35. sudo rm -f /etc/systemd/system/ynh-hotspot.service /usr/local/bin/ynh-hotspot
  36. sudo rm -f /tmp/.ynh-hotspot-*
  37. # Update firewall for DHCP
  38. sudo yunohost firewall disallow --ipv6 UDP 547
  39. sudo yunohost firewall disallow UDP 67
  40. # Remove confs
  41. sudo rm -fr /etc/dnsmasq.dhcpd/
  42. sudo rm -f /etc/hostapd/hostapd.conf{.tpl?,}
  43. sudo rm -f /etc/nginx/conf.d/${domain}.d/wifiadmin.conf
  44. sudo rm -f /etc/php5/fpm/pool.d/wifiadmin.conf
  45. # Remove packages
  46. if [[ $firmware_nonfree == yes ]]; then
  47. packages=$nonfree_packages
  48. else
  49. packages=$free_packages
  50. # Remove free firmwares
  51. if ! dpkg -l firmware-atheros &> /dev/null; then
  52. sudo rm -f /lib/firmware/htc_7010.fw
  53. sudo rm -f /lib/firmware/htc_9271.fw
  54. fi
  55. fi
  56. sudo apt-get --assume-yes --force-yes remove ${packages}
  57. # Restart services
  58. systemctl restart php5-fpm
  59. systemctl reload nginx
  60. # Remove sources
  61. sudo rm -rf /var/www/wifiadmin/