remove 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. service_name=$(ynh_app_setting_get $app service_name)
  32. #=================================================
  33. # REMOVE SERVICE FROM ADMIN PANEL
  34. #=================================================
  35. # Remove a service from the admin panel, added by `yunohost service add`
  36. if yunohost service status | grep -q $app
  37. then
  38. echo "Remove $app service"
  39. yunohost service remove $app
  40. fi
  41. #=================================================
  42. # STOP AND REMOVE SERVICE
  43. #=================================================
  44. # Remove the dedicated systemd config
  45. ynh_remove_systemd_config $service_name
  46. ynh_secure_remove /usr/local/bin/$service_name
  47. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  48. do
  49. ynh_secure_remove "$FILE"
  50. done
  51. # Update firewall for DHCP
  52. yunohost firewall disallow --ipv6 UDP 547
  53. yunohost firewall disallow UDP 67
  54. # Remove confs
  55. ynh_secure_remove /etc/dnsmasq.dhcpd
  56. ynh_secure_remove /etc/nginx/conf.d/${domain}.d/wifiadmin.conf
  57. ynh_secure_remove /etc/php5/fpm/pool.d/wifiadmin.conf
  58. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  59. do
  60. ynh_secure_remove "$FILE"
  61. done
  62. ynh_secure_remove /etc/sudoers.d/hotspot_ynh
  63. # Remove packages
  64. if [[ $firmware_nonfree == yes ]]; then
  65. packages=$nonfree_packages
  66. else
  67. packages=$free_packages
  68. # Remove free firmwares
  69. if ! dpkg -l firmware-atheros &> /dev/null; then
  70. ynh_secure_remove /lib/firmware/htc_7010.fw
  71. ynh_secure_remove /lib/firmware/htc_9271.fw
  72. fi
  73. fi
  74. apt-get --assume-yes --force-yes remove ${packages}
  75. # Restart services
  76. systemctl restart php5-fpm
  77. systemctl reload nginx
  78. # Remove sources
  79. ynh_secure_remove /var/www/wifiadmin
  80. # Remove user
  81. ynh_system_user_delete ${app}