From: jow Date: Sun, 5 Feb 2012 15:06:22 +0000 (+0000) Subject: [packages_10.03.2] chaosvpn: merge r29056 X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=991293eb6fdb595f376324e8f7e8a5464950ef57;p=10.03%2Fpackages.git [packages_10.03.2] chaosvpn: merge r29056 git-svn-id: svn://svn.openwrt.org/openwrt/branches/packages_10.03.2@30199 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/chaosvpn/Makefile b/net/chaosvpn/Makefile index 5b602ad..48e79a8 100644 --- a/net/chaosvpn/Makefile +++ b/net/chaosvpn/Makefile @@ -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/ diff --git a/net/chaosvpn/files/chaosvpn.init b/net/chaosvpn/files/chaosvpn.init index 0862638..d415f5d 100644 --- a/net/chaosvpn/files/chaosvpn.init +++ b/net/chaosvpn/files/chaosvpn.init @@ -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 }