12 lines
279 B
Bash
Executable File
12 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# scripts/manual/vpn-open.sh
|
|
#
|
|
# Manual: open the local CyberGhost VPN profile for field networking tests.
|
|
# Not part of CI; requires local sudo privileges.
|
|
set -euo pipefail
|
|
|
|
here=$(pwd)
|
|
cd /home/brad/cyberghost
|
|
sudo openvpn --config openvpn.ovpn
|
|
cd "$here"
|