Update 90-vpn.sh

This commit is contained in:
Alexandre
2024-03-13 10:53:53 +01:00
committed by GitHub
parent 13457ccd7e
commit d476c4875c

View File

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