Browse Source

add prefix "vpnclient" to hook script filenames

HgO 1 year ago
parent
commit
d36908df8d

conf/scripts/route-down.d/10-unset-firewall → conf/scripts/route-down.d/10-vpnclient-unset-firewall


conf/scripts/route-down.d/20-unset-dns → conf/scripts/route-down.d/20-vpnclient-unset-dns


conf/scripts/route-down.d/30-unset-server-ipv6-route → conf/scripts/route-down.d/30-vpnclient-unset-server-ipv6-route


conf/scripts/route-down.d/40-unset-ipv6 → conf/scripts/route-down.d/40-vpnclient-unset-ipv6


conf/scripts/route-up.d/10-set-firewall → conf/scripts/route-up.d/10-vpnclient-set-firewall


conf/scripts/route-up.d/20-set-dns → conf/scripts/route-up.d/20-vpnclient-set-dns


conf/scripts/route-up.d/30-set-server-ipv6-route → conf/scripts/route-up.d/30-vpnclient-set-server-ipv6-route


conf/scripts/route-up.d/40-set-ipv6 → conf/scripts/route-up.d/40-vpnclient-set-ipv6


+ 3 - 8
scripts/backup

@@ -39,14 +39,9 @@ ynh_backup --src_path="/etc/openvpn/client.conf" --not_mandatory
 ynh_backup --src_path="/etc/openvpn/client.cube" --not_mandatory
 ynh_backup --src_path="/etc/openvpn/client.ovpn" --not_mandatory
 
-ynh_backup --src_path="/etc/openvpn/scripts/route-up.d/10-set-firewall"
-ynh_backup --src_path="/etc/openvpn/scripts/route-up.d/20-set-dns"
-ynh_backup --src_path="/etc/openvpn/scripts/route-up.d/30-set-server-ipv6-route"
-ynh_backup --src_path="/etc/openvpn/scripts/route-up.d/40-set-ipv6"
-ynh_backup --src_path="/etc/openvpn/scripts/route-down.d/10-unset-firewall"
-ynh_backup --src_path="/etc/openvpn/scripts/route-down.d/20-unset-dns"
-ynh_backup --src_path="/etc/openvpn/scripts/route-down.d/30-unset-server-ipv6-route"
-ynh_backup --src_path="/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_backup --src_path="$FILE"
+done
 
 ynh_backup --src_path="/etc/openvpn/keys/"
 ynh_backup --src_path="/etc/openvpn/scripts/run-parts.sh"

+ 5 - 12
scripts/remove

@@ -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

+ 3 - 8
scripts/restore

@@ -37,14 +37,9 @@ ynh_restore_file --origin_path="/etc/openvpn/client.conf" --not_mandatory
 ynh_restore_file --origin_path="/etc/openvpn/client.cube" --not_mandatory
 ynh_restore_file --origin_path="/etc/openvpn/client.ovpn" --not_mandatory
 
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/10-set-firewall"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/20-set-dns"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/30-set-server-ipv6-route"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/40-set-ipv6"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/10-unset-firewall"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/20-unset-dns"
-ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/30-unset-server-ipv6-route"
-ynh_restore_file --origin_path="/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_restore_file --origin_path="$FILE"
+done
 
 ynh_restore_file --origin_path="/etc/openvpn/keys/"
 ynh_restore_file --origin_path="/etc/openvpn/scripts/run-parts.sh"