diff options
author | Christian Pointner <equinox@spreadspace.org> | 2014-06-14 23:43:32 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2014-06-20 18:46:00 +0200 |
commit | 4d0bfa537143504c8ca13887fc5b657adfecf272 (patch) | |
tree | 56109220af97fb1472badb297a9efc413e329f98 /net/uanytun/files | |
parent | 4e682f03ef2be78fe3846a342c1149275f74a2b4 (diff) |
upgrade uanytun to newest release 0.3.4
the new package now makes use of build variants
Signed-off-by: Christian Pointner <equinox@spreadspace.org>
Diffstat (limited to 'net/uanytun/files')
-rw-r--r-- | net/uanytun/files/uanytun.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/uanytun/files/uanytun.init b/net/uanytun/files/uanytun.init index 59e1c23cd..21609cad0 100644 --- a/net/uanytun/files/uanytun.init +++ b/net/uanytun/files/uanytun.init @@ -61,7 +61,7 @@ stop_vpn() { echo -n " $name" local status="OK" if [ ! -f "$pidfile" ]; then - status="tunnel not active" + status="tunnel not active" else kill `cat $pidfile` > /dev/null 2>&1 || status="failed" rm -f $pidfile @@ -71,7 +71,7 @@ stop_vpn() { start() { echo -n "Starting $DESC:" - config_load $BIN + config_load $BIN if [ $# -gt 0 ]; then while [ $# -gt 0 ]; do config_foreach foreach_config_forced "$1" |