packages/ulogd: use new service functions
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28919 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7f1f739d9c
commit
a086f94c24
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ulogd
|
||||
PKG_VERSION:=1.24
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=ftp://ftp.netfilter.org/pub/ulogd/ \
|
||||
@ -26,7 +26,7 @@ endef
|
||||
|
||||
define Package/ulogd
|
||||
$(call Package/ulogd/Default)
|
||||
DEPENDS:=+iptables
|
||||
DEPENDS:=+iptables-mod-ulog
|
||||
TITLE:=Netfilter userspace logging daemon
|
||||
MENU:=1
|
||||
endef
|
||||
|
@ -1,16 +1,17 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
|
||||
START=50
|
||||
|
||||
BIN=ulogd
|
||||
DEFAULT=/etc/default/$BIN
|
||||
LOG_D=/var/log
|
||||
PROG="ulogd"
|
||||
COMMAND="/usr/sbin/$PROG"
|
||||
DEFAULT="/etc/default/$PROG"
|
||||
|
||||
start() {
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
$BIN $OPTIONS
|
||||
service_start $COMMAND $OPTIONS
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall $BIN
|
||||
service_stop $COMMAND
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user