local-bin/common/vpn

13 lines
213 B
Plaintext
Raw Normal View History

2020-11-10 01:04:20 +02:00
#!/bin/sh
if [ "$1" == "on" ]; then
cmd="c --p2p"
elif [ "$1" == "off" ]; then
cmd="d"
elif [ "$1" == "status" ]; then
cmd="s"
else
echo "Please pass an argument: on, off, status"
exit
fi
doas protonvpn $cmd