remove 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # STANDARD REMOVE
  11. #=================================================
  12. # REMOVE SERVICE INTEGRATION IN YUNOHOST
  13. #=================================================
  14. # Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
  15. ynh_script_progression --message="Removing $app service"
  16. yunohost service stop $service_name
  17. yunohost service remove $service_name
  18. ynh_script_progression --message="Removing $app captiveportal_fakedns service"
  19. yunohost service stop captiveportal_fakedns
  20. yunohost service remove captiveportal_fakedns
  21. ynh_remove_systemd_config --service=$service_name
  22. ynh_remove_systemd_config --service="hostapd@$app"
  23. ynh_remove_systemd_config --service=captiveportal_fakedns
  24. #=================================================
  25. # REMOVE APP MAIN DIR
  26. #=================================================
  27. ynh_script_progression --message="Removing $app configurations..."
  28. ynh_secure_remove --file="/etc/openvpn/scripts/route-up.d/90-${service_name}"
  29. ynh_secure_remove --file="/etc/openvpn/scripts/route-down.d/90-${service_name}"
  30. ynh_secure_remove --file="/usr/local/bin/$service_name"
  31. ynh_secure_remove --file="/usr/local/bin/captiveportal_fakedns"
  32. ynh_secure_remove --file="/usr/local/bin/captiveportal_allow"
  33. ynh_secure_remove --file="/etc/hotspot"
  34. for FILE in $(ls /tmp/.${service_name}-* 2>/dev/null); do
  35. ynh_secure_remove --file="$FILE"
  36. done
  37. # Remove confs
  38. ynh_secure_remove --file="/etc/dnsmasq.d/$app.conf"
  39. systemctl restart dnsmasq
  40. ynh_secure_remove --file="/etc/dnsmasq.$app/"
  41. ynh_secure_remove --file="/etc/hostapd/$app/"
  42. #=================================================
  43. # CLOSE A PORT
  44. #=================================================
  45. if [[ -z "$(other_hotspot_apps)" ]]; then
  46. if yunohost firewall list | grep -q "\- 547$"; then
  47. ynh_script_progression --message="Closing port 547"
  48. ynh_exec_warn_less yunohost firewall disallow TCP 547
  49. fi
  50. if yunohost firewall list | grep -q "\- 67$"; then
  51. ynh_script_progression --message="Closing port 67"
  52. ynh_exec_warn_less yunohost firewall disallow TCP 67
  53. fi
  54. fi