remove 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. if yunohost service status $service_name >/dev/null 2>&1
  23. then
  24. ynh_script_progression --message="Removing $app service"
  25. yunohost service stop $service_name
  26. yunohost service remove $service_name
  27. fi
  28. if yunohost service status captiveportal_fakedns >/dev/null 2>&1
  29. then
  30. ynh_script_progression --message="Removing $app captiveportal_fakedns service"
  31. yunohost service stop captiveportal_fakedns
  32. yunohost service remove captiveportal_fakedns
  33. fi
  34. #=================================================
  35. # STOP AND REMOVE SERVICE
  36. #=================================================
  37. ynh_script_progression --message="Stopping and removing the systemd service..."
  38. # Remove the dedicated systemd config
  39. ynh_remove_systemd_config --service=$service_name
  40. ynh_remove_systemd_config --service=captiveportal_fakedns
  41. #=================================================
  42. # REMOVE DEPENDENCIES
  43. #=================================================
  44. ynh_script_progression --message="Removing dependencies..."
  45. # Remove metapackage and its dependencies
  46. ynh_remove_app_dependencies
  47. #=================================================
  48. # REMOVE APP MAIN DIR
  49. #=================================================
  50. ynh_script_progression --message="Removing app main directory..."
  51. # Remove the app directory securely
  52. ynh_secure_remove --file="/usr/local/bin/$service_name"
  53. ynh_secure_remove --file="/usr/local/bin/captiveportal_fakedns"
  54. ynh_secure_remove --file="/usr/local/bin/captiveportal_allow"
  55. ynh_secure_remove --file="/etc/hotspot"
  56. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  57. do
  58. ynh_secure_remove --file="$FILE"
  59. done
  60. # Remove confs
  61. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  62. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  63. for FILE in $(ls /etc/hostapd/hostapd.*.conf 2>/dev/null)
  64. do
  65. ynh_secure_remove --file="$FILE"
  66. done
  67. #=================================================
  68. # CLOSE A PORT
  69. #=================================================
  70. if yunohost firewall list | grep -q "\- 547$"
  71. then
  72. ynh_script_progression --message="Closing port 547"
  73. ynh_exec_warn_less yunohost firewall disallow TCP 547
  74. fi
  75. if yunohost firewall list | grep -q "\- 67$"
  76. then
  77. ynh_script_progression --message="Closing port 67"
  78. ynh_exec_warn_less yunohost firewall disallow TCP 67
  79. fi
  80. #=================================================
  81. # GENERIC FINALIZATION
  82. #=================================================
  83. # REMOVE DEDICATED USER
  84. #=================================================
  85. ynh_script_progression --message="Removing the dedicated system user..."
  86. # Delete a system user
  87. ynh_system_user_delete --username=$app
  88. #=================================================
  89. # END OF SCRIPT
  90. #=================================================
  91. ynh_script_progression --message="Removal of $app completed"