From a086f94c24364f9e8038716a8375e72f94e6f583 Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 9 Nov 2011 23:43:49 +0000 Subject: [PATCH] packages/ulogd: use new service functions git-svn-id: svn://svn.openwrt.org/openwrt/packages@28919 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/ulogd/Makefile | 4 ++-- net/ulogd/files/ulogd.init | 13 +++++++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/net/ulogd/Makefile b/net/ulogd/Makefile index ddfdc1c52..83ae37e2b 100644 --- a/net/ulogd/Makefile +++ b/net/ulogd/Makefile @@ -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 diff --git a/net/ulogd/files/ulogd.init b/net/ulogd/files/ulogd.init index aef82e7da..1e13bdb5e 100644 --- a/net/ulogd/files/ulogd.init +++ b/net/ulogd/files/ulogd.init @@ -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 } -- 2.11.0