lesavka/scripts/manual/vpn-open.sh

12 lines
279 B
Bash
Raw Normal View History

2025-06-29 03:46:34 -05:00
#!/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
2025-06-29 03:46:34 -05:00
2025-07-01 19:42:34 -05:00
here=$(pwd)
cd /home/brad/cyberghost
sudo openvpn --config openvpn.ovpn
cd "$here"