packages/chaosvpn: use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29056 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-13 22:15:40 +00:00
parent ee71a2638d
commit b4a56caa9c
2 changed files with 10 additions and 5 deletions

View File

@ -1,14 +1,15 @@
# Copyright (C) 2010 OpenWrt.org
# All rights reserved.
#
# Copyright (C) 2010-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=chaosvpn
PKG_VERSION:=2.0
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=${PKG_NAME}-${PKG_VERSION}.tar.gz
PKG_SOURCE_URL:=http://github.com/downloads/ryd/chaosvpn/

View File

@ -1,6 +1,10 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2010-2011 OpenWrt.org
START=99
SERVICE_DAEMONIZE=1
start()
{
/usr/sbin/chaosvpn_config.sh
@ -8,10 +12,10 @@ start()
logger "not starting chaosvpn, check your config"
exit 1
}
/usr/sbin/chaosvpn -f -c /etc/tinc/chaosvpn.conf >/dev/null 2>&1 &
service_start /usr/sbin/chaosvpn -f -c /etc/tinc/chaosvpn.conf
}
stop()
{
killall chaosvpn
service_stop /usr/sbin/chaosvpn
}