summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-12-01 19:15:07 +0100
committerMichał Górny <mgorny@gentoo.org>2018-12-01 19:15:07 +0100
commit827d9830a7027a23b5f1b99525748e4152b7f0eb (patch)
tree9cc29b1d25ae2643002973befc8e72f253eede34 /net-misc/siproxd/files/siproxd.rc8
parentnet-proxy/c-icap-modules: Remove last-rited pkg (diff)
downloadgentoo-827d9830a7027a23b5f1b99525748e4152b7f0eb.tar.gz
gentoo-827d9830a7027a23b5f1b99525748e4152b7f0eb.tar.bz2
gentoo-827d9830a7027a23b5f1b99525748e4152b7f0eb.zip
net-misc/siproxd: Remove last-rited pkg
Closes: https://bugs.gentoo.org/520626 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc/siproxd/files/siproxd.rc8')
-rw-r--r--net-misc/siproxd/files/siproxd.rc821
1 files changed, 0 insertions, 21 deletions
diff --git a/net-misc/siproxd/files/siproxd.rc8 b/net-misc/siproxd/files/siproxd.rc8
deleted file mode 100644
index 017783025f1f..000000000000
--- a/net-misc/siproxd/files/siproxd.rc8
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-config_file="/etc/siproxd.conf"
-
-pidfile="/var/run/siproxd/siproxd.pid"
-command="/usr/sbin/siproxd"
-command_args="-p ${pidfile} -c ${config_file}"
-
-depend() {
- need net
-}
-
-start_pre() {
- if [ ! -f "${config_file}" ] ; then
- eerror "Please create ${config_file} first!"
- return 1
- fi
- checkpath -q -d ${pidfile%/*} -o siproxd:siproxd
-}