1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 12:23:59 +02:00
openwrt-packages/net/softethervpn/files/vpnbridge.init
Rupan 75fcb14dc0 softethervpn: added new package 4.21-9613
- based on the work done by el1n with his authorization (https://github.com/el1n/OpenWRT-package-softether)
- updated softethervpn to latest version
- introduced necessary patches for lede compatibility (nossl3)

Signed-Off-by: Federico Di Marco <fededim@gmail.com>
2016-11-10 16:14:59 +01:00

13 lines
348 B
Bash

#!/bin/sh /etc/rc.common
START=60
start(){
logger -t 'softethervpn' "Starting softether vpnbridge service."
/usr/bin/env LANG=en_US.UTF-8 /usr/libexec/softethervpn/vpnbridge start
}
stop(){
logger -t 'softethervpn' "Stopping softether vpnbridge service."
/usr/bin/env LANG=en_US.UTF-8 /usr/libexec/softethervpn/vpnbridge stop
}