packages/gw6c: use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@28923 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-09 23:49:15 +00:00
parent 55c1bbe5d8
commit 1f73407f58
2 changed files with 66 additions and 66 deletions

View File

@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=gw6c PKG_NAME:=gw6c
PKG_VERSION:=5.1 PKG_VERSION:=5.1
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://openwrt.linux-appliance.net/sources PKG_SOURCE_URL:=http://openwrt.linux-appliance.net/sources

View File

@ -1,12 +1,17 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
# Copyright (C) 2007-2011 OpenWrt.org
# Copyright (C) 2007 RoadRunner.cx # Copyright (C) 2007 RoadRunner.cx
START=52 START=52
SERVICE_DAEMONIZE=1
SERVICE_WRITE_PID=1
genconf() { genconf() {
[ -f /etc/config/gw6c ] || { [ -f /etc/config/gw6c ] || {
echo "You are missing configuration file /etc/config/gw6c" echo "You are missing configuration file /etc/config/gw6c"
return 0 return 1
} }
config_load "gw6c" config_load "gw6c"
@ -15,7 +20,7 @@ genconf() {
[ "$DISABLED" == "1" ] && { [ "$DISABLED" == "1" ] && {
echo "You haven't edited your configuration file. Gateway6 is disabled." echo "You haven't edited your configuration file. Gateway6 is disabled."
return 0 return 1
} }
config_get USERID basic userid config_get USERID basic userid
@ -94,18 +99,13 @@ EOF
start() { start() {
genconf genconf
if [ -z "$GW6C_CONF" ] || [ ! -f "$GW6C_CONF" ]; then [ -n "$GW6C_CONF" ] || return 1
echo "Gateway6 client cannot start." [ -f "$GW6C_CONF" ] || return 1
else service_start /usr/sbin/gw6c -f "$GW6C_CONF"
echo "Starting Gateway6 client."
/usr/sbin/gw6c -f "$GW6C_CONF"
fi
} }
stop() { stop() {
[ `ps ax|grep -v grep|grep -c gw6c` != "0" ] && { service_stop /usr/sbin/gw6c && {
killall -q gw6c
[ `ps ax|grep -v grep|grep -c radvd` != "0" ] && killall -q radvd
echo 0 > /proc/sys/net/ipv6/conf/all/forwarding echo 0 > /proc/sys/net/ipv6/conf/all/forwarding
} }
} }