remove 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. final_path=$(ynh_app_setting_get $app final_path)
  33. #=================================================
  34. # STANDARD REMOVE
  35. #=================================================
  36. # REMOVE SERVICE FROM ADMIN PANEL
  37. #=================================================
  38. # Remove a service from the admin panel, added by `yunohost service add`
  39. if yunohost service status | grep -q $service_name
  40. then
  41. ynh_print_info "Removing $app service"
  42. yunohost service remove $service_name
  43. fi
  44. #=================================================
  45. # STOP AND REMOVE SERVICE
  46. #=================================================
  47. ynh_print_info "Stopping and removing the systemd service"
  48. # Remove the dedicated systemd config
  49. ynh_remove_systemd_config
  50. #=================================================
  51. # REMOVE DEPENDENCIES
  52. #=================================================
  53. ynh_print_info "Removing dependencies"
  54. # Remove metapackage and its dependencies
  55. ynh_remove_app_dependencies
  56. #=================================================
  57. # REMOVE APP MAIN DIR
  58. #=================================================
  59. ynh_print_info "Removing app main directory"
  60. # Remove the app directory securely
  61. ynh_secure_remove "$final_path"
  62. ynh_secure_remove /usr/local/bin/$service_name
  63. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  64. do
  65. ynh_secure_remove "$FILE"
  66. done
  67. # Remove confs
  68. ynh_secure_remove /etc/dnsmasq.dhcpd
  69. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  70. do
  71. ynh_secure_remove "$FILE"
  72. done
  73. ynh_secure_remove /etc/sudoers.d/hotspot_ynh
  74. # Remove packages
  75. if [[ $firmware_nonfree -eq 0 ]]; then
  76. # Remove free firmwares
  77. if ! dpkg -l firmware-atheros &> /dev/null; then
  78. ynh_secure_remove /lib/firmware/htc_7010.fw
  79. ynh_secure_remove /lib/firmware/htc_9271.fw
  80. fi
  81. fi
  82. #=================================================
  83. # REMOVE NGINX CONFIGURATION
  84. #=================================================
  85. ynh_print_info "Removing nginx web server configuration"
  86. # Remove the dedicated nginx config
  87. ynh_remove_nginx_config
  88. #=================================================
  89. # REMOVE PHP-FPM CONFIGURATION
  90. #=================================================
  91. ynh_print_info "Removing php-fpm configuration"
  92. # Remove the dedicated php-fpm config
  93. ynh_remove_fpm_config
  94. #=================================================
  95. # CLOSE A PORT
  96. #=================================================
  97. if yunohost firewall list | grep -q "\- 547$"
  98. then
  99. ynh_print_info "Closing port 547"
  100. ynh_exec_warn_less yunohost firewall disallow TCP 547
  101. fi
  102. if yunohost firewall list | grep -q "\- 67$"
  103. then
  104. ynh_print_info "Closing port 67"
  105. ynh_exec_warn_less yunohost firewall disallow TCP 67
  106. fi
  107. #=================================================
  108. # GENERIC FINALIZATION
  109. #=================================================
  110. # REMOVE DEDICATED USER
  111. #=================================================
  112. ynh_print_info "Removing the dedicated system user"
  113. # Delete a system user
  114. ynh_system_user_delete $app
  115. #=================================================
  116. # END OF SCRIPT
  117. #=================================================
  118. ynh_print_info "Removal of $app completed"