remove 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. #=================================================
  29. # STOP AND REMOVE SERVICE
  30. #=================================================
  31. ynh_script_progression --message="Stopping and removing the systemd service..."
  32. # Remove the dedicated systemd config
  33. ynh_remove_systemd_config --service=$service_name
  34. #=================================================
  35. # REMOVE DEPENDENCIES
  36. #=================================================
  37. ynh_script_progression --message="Removing dependencies..."
  38. # Remove metapackage and its dependencies
  39. ynh_remove_app_dependencies
  40. #=================================================
  41. # REMOVE APP MAIN DIR
  42. #=================================================
  43. ynh_script_progression --message="Removing app main directory..."
  44. # Remove the app directory securely
  45. ynh_secure_remove --file="/usr/local/bin/$service_name"
  46. for FILE in $(ls /tmp/.ynh-hotspot-* 2>/dev/null)
  47. do
  48. ynh_secure_remove --file="$FILE"
  49. done
  50. # Remove confs
  51. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  52. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  53. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  54. do
  55. ynh_secure_remove --file="$FILE"
  56. done
  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"