remove 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. # LOAD SETTINGS
  11. #=================================================
  12. ynh_script_progression --message="Loading installation settings..."
  13. app=$YNH_APP_INSTANCE_NAME
  14. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  15. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  16. wifi_device=$(ynh_app_setting_get --app=$app --key=wifi_device)
  17. #=================================================
  18. # STANDARD REMOVE
  19. #=================================================
  20. # REMOVE SERVICE INTEGRATION IN YUNOHOST
  21. #=================================================
  22. # Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
  23. if yunohost service status $service_name >/dev/null 2>&1
  24. then
  25. ynh_script_progression --message="Removing $app service"
  26. yunohost service stop $service_name
  27. yunohost service remove $service_name
  28. fi
  29. #=================================================
  30. # STOP AND REMOVE SERVICE
  31. #=================================================
  32. ynh_script_progression --message="Stopping and removing the systemd service..."
  33. # Remove the dedicated systemd config
  34. ynh_remove_systemd_config --service=$service_name
  35. #=================================================
  36. # REMOVE DEPENDENCIES
  37. #=================================================
  38. ynh_script_progression --message="Removing dependencies..."
  39. # Remove metapackage and its dependencies
  40. ynh_remove_app_dependencies
  41. #=================================================
  42. # REMOVE APP MAIN DIR
  43. #=================================================
  44. ynh_script_progression --message="Removing app main directory..."
  45. ynh_secure_remove --file="/etc/openvpn/scripts/route-up.d/90-hotspot"
  46. ynh_secure_remove --file="/etc/openvpn/scripts/route-down.d/90-hotspot"
  47. # Remove the app directory securely
  48. ynh_secure_remove --file="/usr/local/bin/$service_name"
  49. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  50. do
  51. ynh_secure_remove --file="$FILE"
  52. done
  53. # Remove confs
  54. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  55. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv6-ssid-${wifi_device}.conf"
  56. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  57. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv4-ssid-${wifi_device}.conf"
  58. ynh_secure_remove --file="/etc/hostapd/hostapd.conf"
  59. ynh_secure_remove --file="/etc/hostapd/hostapd-${wifi_device}.conf"
  60. #=================================================
  61. # CLOSE A PORT
  62. #=================================================
  63. if yunohost firewall list | grep -q "\- 547$"
  64. then
  65. ynh_script_progression --message="Closing port 547"
  66. ynh_exec_warn_less yunohost firewall disallow TCP 547
  67. fi
  68. if yunohost firewall list | grep -q "\- 67$"
  69. then
  70. ynh_script_progression --message="Closing port 67"
  71. ynh_exec_warn_less yunohost firewall disallow TCP 67
  72. fi
  73. #=================================================
  74. # GENERIC FINALIZATION
  75. #=================================================
  76. # REMOVE DEDICATED USER
  77. #=================================================
  78. ynh_script_progression --message="Removing the dedicated system user..."
  79. # Delete a system user
  80. ynh_system_user_delete --username=$app
  81. #=================================================
  82. # END OF SCRIPT
  83. #=================================================
  84. ynh_script_progression --message="Removal of $app completed"