summaryrefslogtreecommitdiff
path: root/dev-db/pgagent/files/pgagent.initd-r1
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-db/pgagent/files/pgagent.initd-r1
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-db/pgagent/files/pgagent.initd-r1')
-rw-r--r--dev-db/pgagent/files/pgagent.initd-r131
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-db/pgagent/files/pgagent.initd-r1 b/dev-db/pgagent/files/pgagent.initd-r1
deleted file mode 100644
index a555006d3bd2..000000000000
--- a/dev-db/pgagent/files/pgagent.initd-r1
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/bin/pgagent"
-command_user="pgagent"
-
-# If pgagent daemonizes itself, it won't write a PID file and
-# we have to work a little harder to stop() it. So let it run
-# in the foreground, and have OpenRC manage its PID file.
-command_args="-f
- -t ${PGA_POLL}
- -r ${PGA_RETRY}
- -s ${PGA_LOG}
- -l ${PGA_LEVEL}
- hostaddr=${PG_HOST}
- dbname=${PG_DBNAME}
- user=${PG_USER}"
-
-command_background="true"
-pidfile="/run/pgagent.pid"
-
-depend() {
- use net
- need postgresql
-}
-
-start_pre() {
- # The log file needs to be writable by the daemon user.
- checkpath --file --owner root:pgagent --mode 0660 "${PGA_LOG}"
-}