packages/net/chaosvpn/files/chaosvpn.init

22 lines
327 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2010-2011 OpenWrt.org
START=99
SERVICE_DAEMONIZE=1
start()
{
/usr/sbin/chaosvpn_config.sh
[ $? = 0 ] || {
logger "not starting chaosvpn, check your config"
exit 1
}
service_start /usr/sbin/chaosvpn -f -c /etc/tinc/chaosvpn.conf
}
stop()
{
service_stop /usr/sbin/chaosvpn
}