remove 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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/dhcpdv6.conf.tpl"
  52. ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv6.conf"
  53. ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv4.conf.tpl"
  54. ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv4.conf"
  55. ynh_secure_remove --file="/etc/hostapd/$app/hostapd.conf.tpl"
  56. ynh_secure_remove --file="/etc/hostapd/$app/hostapd.conf"
  57. #=================================================
  58. # CLOSE A PORT
  59. #=================================================
  60. if yunohost firewall list | grep -q "\- 547$"
  61. then
  62. ynh_script_progression --message="Closing port 547"
  63. ynh_exec_warn_less yunohost firewall disallow TCP 547
  64. fi
  65. if yunohost firewall list | grep -q "\- 67$"
  66. then
  67. ynh_script_progression --message="Closing port 67"
  68. ynh_exec_warn_less yunohost firewall disallow TCP 67
  69. fi
  70. #=================================================
  71. # GENERIC FINALIZATION
  72. #=================================================
  73. # REMOVE DEDICATED USER
  74. #=================================================
  75. ynh_script_progression --message="Removing the dedicated system user..."
  76. # Delete a system user
  77. ynh_system_user_delete --username=$app
  78. #=================================================
  79. # END OF SCRIPT
  80. #=================================================
  81. ynh_script_progression --message="Removal of $app completed"