diff options
| author | Anton Bobov <abobov@gmail.com> | 2017-03-24 22:34:25 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2017-03-24 22:34:25 +0500 |
| commit | 0cb7943aaa4f921e8b0442d35a0c409e862623f2 (patch) | |
| tree | 41cda900bfcdd29c33121cdf0a5282b8641b8a8a /through-vpn.sh | |
| parent | 03be9e0536963e3ff4a628ed78347b9569b52ee3 (diff) | |
Add scripts.
* auto-display - toggle all displays in auto mode
* bang - play audio file (useful to notify on other process ending)
* bat - display battery status
* through-vpn - add host to route through vpn
Diffstat (limited to 'through-vpn.sh')
| -rwxr-xr-x | through-vpn.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/through-vpn.sh b/through-vpn.sh new file mode 100755 index 0000000..7e9e1ee --- /dev/null +++ b/through-vpn.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# +# Add host to through-vpn address list. +# + +if [ $# -eq 0 ] ; then + echo 'First argument must be host name.' + exit 1 +fi + +ssh riga "/ip firewall address-list add address=$1 list=through-vpn" |
