mirror of
http://git.openwrt.org/packages.git
synced 2025-01-09 04:19:54 +08:00
packages/syslog-ng{,3}: use new service functions
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28891 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1f2a63775b
commit
241960f2db
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (C) 2006-2010 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=syslog-ng
|
||||
PKG_VERSION:=1.6.12
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
PKG_MD5SUM:=a3cbfdb6e1e5beea181a7349749719f3
|
||||
|
||||
PKG_SOURCE_URL:= \
|
||||
|
@ -1,27 +1,19 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
|
||||
START=50
|
||||
|
||||
SERVICE_USE_PID=1
|
||||
|
||||
start() {
|
||||
[ -f /etc/syslog-ng/syslog-ng.conf ] || {
|
||||
echo "/etc/syslog-ng/syslog-ng.conf does not exist !";
|
||||
exit 0;
|
||||
};
|
||||
[ -d /var/run ] || mkdir -p /var/run
|
||||
[ -x /usr/sbin/syslog-ng ] && /usr/sbin/syslog-ng
|
||||
[ -f /etc/syslog-ng.conf ] || return 1
|
||||
service_start /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall syslog-ng
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
service_stop /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
reload() {
|
||||
kill -HUP `cat /var/run/syslog-ng.pid` &>/dev/null
|
||||
service_reload /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=syslog-ng
|
||||
PKG_VERSION:=3.0.5
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE_URL:=http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(PKG_VERSION)/source/
|
||||
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
||||
|
@ -1,27 +1,19 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
# Copyright (C) 2006-2011 OpenWrt.org
|
||||
|
||||
START=50
|
||||
|
||||
SERVICE_USE_PID=1
|
||||
|
||||
start() {
|
||||
[ -f /etc/syslog-ng.conf ] || {
|
||||
echo "/etc/syslog-ng.conf does not exist !";
|
||||
exit 0;
|
||||
};
|
||||
[ -d /var/run ] || mkdir -p /var/run
|
||||
[ -x /usr/sbin/syslog-ng ] && /usr/sbin/syslog-ng
|
||||
[ -f /etc/syslog-ng.conf ] || return 1
|
||||
service_start /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall syslog-ng
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
service_stop /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
reload() {
|
||||
kill -HUP `cat /var/run/syslog-ng.pid` &>/dev/null
|
||||
service_reload /usr/sbin/syslog-ng
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user