[packages] pepperspot: use service wrappers, use network.sh to find ip address

git-svn-id: svn://svn.openwrt.org/openwrt/packages@31946 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-05-28 15:20:46 +00:00
parent 83506d17f1
commit 2f313d45f9
2 changed files with 12 additions and 13 deletions

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2008-2010 OpenWrt.org # Copyright (C) 2008-2012 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=pepperspot PKG_NAME:=pepperspot
PKG_VERSION:=0.3 PKG_VERSION:=0.3
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:=@SF/pepperspot PKG_SOURCE_URL:=@SF/pepperspot

View File

@ -1,20 +1,19 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org # Copyright (C) 2008-2012 OpenWrt.org
START=50 START=50
RUN_D=/var/run SERVICE_USE_PID=1
PID_F=$RUN_D/pepper.pid SERVICE_PID_FILE=/var/run/pepper.pid
start() { start() {
include /lib/network . /lib/functions/network.sh
scan_interfaces
/sbin/insmod tun >/dev/null 2>&1 local ipaddr
/sbin/insmod ipv6 >/dev/null 2>&1 network_get_ipaddr ipaddr lan && \
[ -d $RUN_D ] || mkdir -p $RUN_D service_start /usr/sbin/pepper --dns1="$ipaddr"
config_get ipaddr lan ipaddr
/usr/sbin/pepper --dns1="$ipaddr"
} }
stop() { stop() {
[ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1 service_stop /usr/sbin/pepper
} }