|
@@ -43,15 +43,13 @@ systemctl disable $service_checker_name.timer --quiet
|
|
|
systemctl stop $service_checker_name
|
|
|
systemctl disable $service_checker_name --quiet
|
|
|
|
|
|
-if ynh_exec_warn_less yunohost service status $service_name >/dev/null
|
|
|
-then
|
|
|
+if ynh_exec_warn_less yunohost service status $service_name >/dev/null; then
|
|
|
yunohost service stop $service_name
|
|
|
yunohost service disable $service_name --quiet
|
|
|
yunohost service remove $service_name
|
|
|
fi
|
|
|
|
|
|
-for FILE in $(ls /etc/systemd/system/$service_name* /usr/local/bin/ynh-vpnclient* /tmp/.ynh-vpnclient-*)
|
|
|
-do
|
|
|
+for FILE in $(ls /etc/systemd/system/$service_name* /usr/local/bin/ynh-vpnclient* /tmp/.ynh-vpnclient-*); do
|
|
|
ynh_secure_remove "$FILE"
|
|
|
done
|
|
|
|
|
@@ -69,14 +67,9 @@ ynh_secure_remove /etc/openvpn/client.ovpn
|
|
|
# Remove openvpn script
|
|
|
ynh_secure_remove /etc/openvpn/scripts/run-parts.sh
|
|
|
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-up.d/10-set-firewall"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-up.d/20-set-dns"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-up.d/30-set-server-ipv6-route"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-up.d/40-set-ipv6"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-down.d/10-unset-firewall"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-down.d/20-unset-dns"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-down.d/30-unset-server-ipv6-route"
|
|
|
-ynh_secure_remove "/etc/openvpn/scripts/route-down.d/40-unset-ipv6"
|
|
|
+for FILE in $(ls /etc/openvpn/scripts/route-up.d/*-vpnclient-* /etc/openvpn/scripts/route-down.d/*-vpnclient-*); do
|
|
|
+ ynh_secure_remove "$FILE"
|
|
|
+done
|
|
|
|
|
|
# Remove YunoHost hook
|
|
|
ynh_secure_remove /etc/yunohost/hooks.d/90-vpnclient.tpl
|