From d476c4875cfcf1fe767fd9ef36e28d8e50a7a056 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:53:53 +0100 Subject: [PATCH] Update 90-vpn.sh --- unpackerr/rootfs/90-vpn.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/unpackerr/rootfs/90-vpn.sh b/unpackerr/rootfs/90-vpn.sh index e3f3000c4..9105586d8 100755 --- a/unpackerr/rootfs/90-vpn.sh +++ b/unpackerr/rootfs/90-vpn.sh @@ -5,23 +5,23 @@ set +e VPN_PROVIDER="${VPN_PROVIDER:-null}" case "$VPN_PROVIDER" in "generic") - rm -r /etc/s6*/s6*/service-pia - rm -r /etc/s6*/s6*/service-proton + echo "" > etc/s6*/s6*/service-pia/run + echo "" > /etc/s6*/s6*/service-proton/run ;; "pia") - rm -r /etc/s6*/s6*/service-privoxy - rm -r /etc/s6*/s6*/service-proton + echo "" > /etc/s6*/s6*/service-privoxy/run + echo "" > /etc/s6*/s6*/service-proton/run ;; "proton") - rm -r /etc/s6*/s6*/service-privoxy - rm -r /etc/s6*/s6*/service-pia + echo "" > /etc/s6*/s6*/service-privoxy/run + echo "" > /etc/s6*/s6*/service-pia/run ;; **) - rm -r /etc/s6*/s6*/service-privoxy - rm -r /etc/s6*/s6*/service-proton - rm -r /etc/s6*/s6*/service-pia + echo "" > /etc/s6*/s6*/service-privoxy/run + echo "" > /etc/s6*/s6*/service-proton/run + echo "" > /etc/s6*/s6*/service-pia/run ;; esac