summaryrefslogtreecommitdiff
path: root/www-misc/pglogd/files
authorMichael Krelin <hacker@klever.net>2007-07-25 22:05:16 (UTC)
committer Michael Krelin <hacker@klever.net>2007-07-25 22:05:16 (UTC)
commit88f05c619e0e57f335725fc28f61556da231535b (patch) (unidiff)
tree644a1e4ba0172d3d7d67d08a1e7de56f6d11103c /www-misc/pglogd/files
parentdbfc21ba1d43aa380988062b21b4fec566dad0bd (diff)
downloadasylum-88f05c619e0e57f335725fc28f61556da231535b.zip
asylum-88f05c619e0e57f335725fc28f61556da231535b.tar.gz
asylum-88f05c619e0e57f335725fc28f61556da231535b.tar.bz2
www-misc/pglogd: add a foreground patch and fix initscript
Diffstat (limited to 'www-misc/pglogd/files') (more/less context) (ignore whitespace changes)
-rw-r--r--www-misc/pglogd/files/digest-pglogd-2.33
-rw-r--r--www-misc/pglogd/files/pglogd.init2
2 files changed, 1 insertions, 4 deletions
diff --git a/www-misc/pglogd/files/digest-pglogd-2.3 b/www-misc/pglogd/files/digest-pglogd-2.3
deleted file mode 100644
index 1d5af03..0000000
--- a/www-misc/pglogd/files/digest-pglogd-2.3
+++ b/dev/null
@@ -1,3 +0,0 @@
1MD5 49e494598d1502cf2a20356146fab654 pglogd-2.3.tar.gz 22796
2RMD160 7e9264af8130b3fb5bd3dc89718fb4dfa28e1ec6 pglogd-2.3.tar.gz 22796
3SHA256 2a0e81cc0e0ab3132a48f11834908fdc6b8e4d70c0e6c12dff8815bc93582e78 pglogd-2.3.tar.gz 22796
diff --git a/www-misc/pglogd/files/pglogd.init b/www-misc/pglogd/files/pglogd.init
index ce7108f..2fdc872 100644
--- a/www-misc/pglogd/files/pglogd.init
+++ b/www-misc/pglogd/files/pglogd.init
@@ -1,20 +1,20 @@
1#!/sbin/runscript 1#!/sbin/runscript
2# Copyright 1999-2005 Gentoo Foundation 2# Copyright 1999-2005 Gentoo Foundation
3# Distributed under the terms of the GNU General Public License v2 3# Distributed under the terms of the GNU General Public License v2
4# $Header: /var/cvsroot/gentoo-x86/www-misc/pglogd/files/pglogd.init,v 1.1 2005/05/10 05:07:57 nakano Exp $ 4# $Header: /var/cvsroot/gentoo-x86/www-misc/pglogd/files/pglogd.init,v 1.1 2005/05/10 05:07:57 nakano Exp $
5 5
6depend() { 6depend() {
7 before apache apache2 7 before apache apache2
8} 8}
9 9
10start() { 10start() {
11 ebegin "Starting pglogd" 11 ebegin "Starting pglogd"
12 start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/pglogd.pid --exec /usr/sbin/pglogd -- -c /etc/pglogd.conf 12 start-stop-daemon --background --start --quiet --make-pidfile --pidfile /var/run/pglogd.pid --exec /usr/sbin/pglogd -- -c /etc/pglogd.conf -f
13 eend $? 13 eend $?
14} 14}
15 15
16stop() { 16stop() {
17 ebegin "Stopping pglogd" 17 ebegin "Stopping pglogd"
18 start-stop-daemon --stop --quiet --pidfile /var/run/pglogd.pid 18 start-stop-daemon --stop --quiet --pidfile /var/run/pglogd.pid
19 eend $? 19 eend $?
20} 20}