commit:     41d5eb7a80a83939365333c0ed04606e3d2869f1
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  2 13:50:06 2018 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Thu Aug  2 13:54:29 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d5eb7a

net-im/err: add missing initscript

Reported-by: Toralf Förster <toralf <AT> gentoo.org>
Closes: https://bugs.gentoo.org/662604
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-im/err/files/errd.initd.2 | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/net-im/err/files/errd.initd.2 b/net-im/err/files/errd.initd.2
new file mode 100755
index 00000000000..460cd070f54
--- /dev/null
+++ b/net-im/err/files/errd.initd.2
@@ -0,0 +1,20 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+command="/usr/bin/errbot -u ${ERR_USER}:${ERR_GROUP}"
+command_args="-d -p ${ERR_PID_FILE} -c ${ERR_CONFIG_PATH}/config.py"
+pidfile="${ERR_PID_FILE}"
+
+depend() {
+       need net
+}
+
+start_pre() {
+       # create piddir if necessary, bug #448498
+       local piddir=$(dirname ${ERR_PID_FILE})
+       checkpath -q -d -o err:err -m 0770 "${piddir}" || {
+                eend 1
+                return 1
+        }
+}

Reply via email to