metalog: fix openrc service to send proper signals. Bump revision.

--HG--
extra : convert_revision : ffd26b9da63cfbaf4af5182c9b8dc0c9a9d81cb5
This commit is contained in:
Juan RP 2009-09-18 16:05:18 +02:00
parent 4025c75e3b
commit 77ef4aad39
2 changed files with 3 additions and 3 deletions

View file

@ -16,13 +16,13 @@ depend()
buffer() buffer()
{ {
ebegin "Enabling log buffering" ebegin "Enabling log buffering"
start-stop-daemon --signal USR2 --pidfile $pidfile start-stop-daemon --signal USR1 --pidfile $pidfile
eend $? eend $?
} }
unbuffer() unbuffer()
{ {
ebegin "Disabling log buffering" ebegin "Disabling log buffering"
start-stop-daemon --signal USR1 --pidfile $pidfile start-stop-daemon --signal USR2 --pidfile $pidfile
eend $? eend $?
} }

View file

@ -1,7 +1,7 @@
# Template file for 'metalog' # Template file for 'metalog'
pkgname=metalog pkgname=metalog
version=1 version=1
revision=1 revision=2
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.lzma" distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.lzma"
build_style=gnu_configure build_style=gnu_configure
configure_args="--with-unicode" configure_args="--with-unicode"