remove 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #!/bin/bash
  2. source _common.sh
  3. source /usr/share/yunohost/helpers
  4. #=================================================
  5. # STOP AND REMOVE SERVICES
  6. #=================================================
  7. ynh_print_info "Stopping and removing services"
  8. systemctl stop $service_checker_name.timer && sleep 1
  9. systemctl disable $service_checker_name.timer --quiet
  10. systemctl stop $service_checker_name
  11. systemctl disable $service_checker_name --quiet
  12. if ynh_exec_warn_less yunohost service status $service_name >/dev/null; then
  13. yunohost service stop $service_name
  14. yunohost service disable $service_name --quiet
  15. yunohost service remove $service_name
  16. fi
  17. for FILE in $(ls /etc/systemd/system/$service_name* /usr/local/bin/ynh-vpnclient* /tmp/.ynh-vpnclient-*); do
  18. ynh_secure_remove "$FILE"
  19. done
  20. #=================================================
  21. # SPECIFIC REMOVE
  22. #================================================
  23. ynh_print_info "Removing openvpn configuration"
  24. # Remove openvpn configurations
  25. ynh_secure_remove /etc/openvpn/client.conf
  26. ynh_secure_remove /etc/openvpn/client.conf.tpl
  27. ynh_secure_remove /etc/openvpn/client.cube
  28. ynh_secure_remove /etc/openvpn/client.ovpn
  29. # Remove openvpn script
  30. ynh_secure_remove /etc/openvpn/scripts/run-parts.sh
  31. for FILE in $(ls /etc/openvpn/scripts/route-up.d/*-vpnclient-* /etc/openvpn/scripts/route-down.d/*-vpnclient-*); do
  32. ynh_secure_remove "$FILE"
  33. done
  34. # Remove YunoHost hook
  35. ynh_secure_remove /etc/yunohost/hooks.d/90-vpnclient.tpl
  36. # Remove openvpn service
  37. ynh_secure_remove /etc/systemd/system/openvpn@.service.d/override.conf
  38. # Remove openvpn certificates
  39. ynh_secure_remove /etc/openvpn/keys
  40. # Reload systemd configuration
  41. systemctl daemon-reload
  42. # Make sure to reload the firewall now that the post_iptables_rules ain't there anymore
  43. ynh_print_info "Reloading firewall"
  44. yunohost firewall reload
  45. #=================================================
  46. # END OF SCRIPT
  47. #=================================================
  48. ynh_print_info "Removal of $app completed"