remove 3.2 KB

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