#!/sbin/openrc-run # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { need net } start() { ebegin "Starting SoftEther VPN Bridge" /opt/softether/vpnbridge/vpnbridge start >/dev/null 2>&1 eend $? } stop() { ebegin "Stopping SoftEther VPN Bridge" /opt/softether/vpnbridge/vpnbridge stop >/dev/null 2>&1 eend $? }