remove 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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 START
  20. #=================================================
  21. # IMPORT GENERIC HELPERS
  22. #=================================================
  23. source _common.sh
  24. source /usr/share/yunohost/helpers
  25. #=================================================
  26. # LOAD SETTINGS
  27. #=================================================
  28. ynh_script_progression --message="Loading installation settings..."
  29. app=$YNH_APP_INSTANCE_NAME
  30. domain=$(ynh_app_setting_get --app=$app --key=domain)
  31. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  32. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  33. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  34. #=================================================
  35. # STANDARD REMOVE
  36. #=================================================
  37. # REMOVE SERVICE INTEGRATION IN YUNOHOST
  38. #=================================================
  39. # Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
  40. if yunohost service status $service_name >/dev/null 2>&1
  41. then
  42. ynh_script_progression --message="Removing $app service"
  43. yunohost service stop $service_name
  44. yunohost service remove $service_name
  45. fi
  46. #=================================================
  47. # STOP AND REMOVE SERVICE
  48. #=================================================
  49. ynh_script_progression --message="Stopping and removing the systemd service..."
  50. # Remove the dedicated systemd config
  51. ynh_remove_systemd_config --service=$service_name
  52. #=================================================
  53. # REMOVE DEPENDENCIES
  54. #=================================================
  55. ynh_script_progression --message="Removing dependencies..."
  56. # Remove metapackage and its dependencies
  57. ynh_remove_app_dependencies
  58. #=================================================
  59. # REMOVE APP MAIN DIR
  60. #=================================================
  61. ynh_script_progression --message="Removing app main directory..."
  62. # Remove the app directory securely
  63. ynh_secure_remove --file="$final_path"
  64. ynh_secure_remove --file="/usr/local/bin/$service_name"
  65. ynh_secure_remove --file="/usr/local/bin/iw_multissid"
  66. ynh_secure_remove --file="/usr/local/bin/iw_devices"
  67. ynh_secure_remove --file="/usr/local/bin/iw_ssids"
  68. ynh_secure_remove --file="/usr/local/bin/ipv6_expanded"
  69. ynh_secure_remove --file="/usr/local/bin/ipv6_compressed"
  70. ynh_secure_remove --file="/etc/sudoers.d/${app}_ynh"
  71. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  72. do
  73. ynh_secure_remove --file="$FILE"
  74. done
  75. # Remove confs
  76. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  77. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  78. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  79. do
  80. ynh_secure_remove --file="$FILE"
  81. done
  82. #=================================================
  83. # REMOVE NGINX CONFIGURATION
  84. #=================================================
  85. ynh_script_progression --message="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_script_progression --message="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_script_progression --message="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_script_progression --message="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_script_progression --message="Removing the dedicated system user..."
  113. # Delete a system user
  114. ynh_system_user_delete --username=$app
  115. #=================================================
  116. # END OF SCRIPT
  117. #=================================================
  118. ynh_script_progression --message="Removal of $app completed"