[bin] Add hrvpn script

This commit is contained in:
2026-02-09 11:46:34 -05:00
parent c569f71545
commit 6b48e90e46
2 changed files with 40 additions and 0 deletions

7
bin/.bin/hrvpn Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
case "$1" in
start) openvpn3 session-start --config ~/var/inbox/hungryroot.ovpn ;;
stop) openvpn3 session-manage --config ~/var/inbox/hungryroot.ovpn --disconnect ;;
status) openvpn3 sessions-list ;;
esac