remove 4.8 KB

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