2025-06-29 03:46:34 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# scripts/manual/vpn-open.sh
|
2026-04-23 01:13:29 -03:00
|
|
|
#
|
|
|
|
|
# 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
|
2026-04-23 01:13:29 -03:00
|
|
|
cd "$here"
|