summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Savchenko <bircoph@gentoo.org>2017-01-09 20:08:57 +0300
committerAndrew Savchenko <bircoph@gentoo.org>2017-01-09 20:08:57 +0300
commit9fda18bd74c4aa4fb863d4e8bf1ed18d181d9f1e (patch)
treecf053c4f53454a29fadd349c908b30d29fc6eaae /net-proxy/privoxy/files
parentnet-proxy/polipo: remove old (diff)
downloadgentoo-9fda18bd74c4aa4fb863d4e8bf1ed18d181d9f1e.tar.gz
gentoo-9fda18bd74c4aa4fb863d4e8bf1ed18d181d9f1e.tar.bz2
gentoo-9fda18bd74c4aa4fb863d4e8bf1ed18d181d9f1e.zip
net-proxy/privoxy: remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'net-proxy/privoxy/files')
-rw-r--r--net-proxy/privoxy/files/privoxy.initd-229
1 files changed, 0 insertions, 29 deletions
diff --git a/net-proxy/privoxy/files/privoxy.initd-2 b/net-proxy/privoxy/files/privoxy.initd-2
deleted file mode 100644
index e6b48e5575f3..000000000000
--- a/net-proxy/privoxy/files/privoxy.initd-2
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-CONFFILE=/etc/${SVCNAME}/config
-PIDFILE=/var/run/${SVCNAME}.pid
-
-depend() {
- need net
-}
-
-start() {
- if [ ! -f "${CONFFILE}" ]; then
- eerror "Configuration file ${CONFFILE} not found!"
- return 1
- fi
-
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --quiet --exec /usr/sbin/privoxy --pidfile "${PIDFILE}" \
- -- --pidfile "${PIDFILE}" --user privoxy.privoxy "${CONFFILE}" #2>/dev/null
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --quiet --pidfile "${PIDFILE}"
- eend $?
-}