vpn: add case for mirror2

This commit is contained in:
Nico Schottelius 2023-01-05 13:42:32 +01:00
parent 9572e6a770
commit c6bd010680
1 changed files with 5 additions and 0 deletions

5
vpn.sh
View File

@ -32,6 +32,11 @@ case "$1" in
sudo wg-quick up rmr4n1
sudo wg-quick up rmr6n1
;;
mirror2)
sudo wg-quick up rmr2n2
sudo wg-quick up rmr4n2
sudo wg-quick up rmr6n2
;;
*)
echo "Host does not have VPN assigned" >&2
exit 1