summaryrefslogtreecommitdiff
path: root/www-misc/pglogd/files/pglogd.init
blob: ce7108fc96da09845020866e79265bbdf03d8549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-misc/pglogd/files/pglogd.init,v 1.1 2005/05/10 05:07:57 nakano Exp $

depend() {
	before apache apache2
}

start() {
	ebegin "Starting pglogd"
	start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/pglogd.pid --exec /usr/sbin/pglogd -- -c /etc/pglogd.conf
	eend $?
}

stop() {
	ebegin "Stopping pglogd"
	start-stop-daemon --stop --quiet --pidfile /var/run/pglogd.pid
	eend $?
}