diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2006-09-08 17:11:55 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2006-09-08 17:11:55 +0000 |
commit | 915208482063c28a8c4e470c85f0c41cda1e1167 (patch) | |
tree | fc747374f2bfa513bb8f48adc268a115e3f8a564 /net-proxy/ziproxy/files | |
parent | version bump, solving bugs #139486 and #143496, removing old version. (diff) | |
download | gentoo-2-915208482063c28a8c4e470c85f0c41cda1e1167.tar.gz gentoo-2-915208482063c28a8c4e470c85f0c41cda1e1167.tar.bz2 gentoo-2-915208482063c28a8c4e470c85f0c41cda1e1167.zip |
version bump, solving bugs #139486 and #143496, removing old version.
(Portage version: 2.1.1_rc1-r7)
(Unsigned Manifest commit)
Diffstat (limited to 'net-proxy/ziproxy/files')
-rw-r--r-- | net-proxy/ziproxy/files/digest-ziproxy-1.5.2 | 1 | ||||
-rw-r--r-- | net-proxy/ziproxy/files/ziproxy.confd | 14 | ||||
-rw-r--r-- | net-proxy/ziproxy/files/ziproxy.initd | 26 |
3 files changed, 0 insertions, 41 deletions
diff --git a/net-proxy/ziproxy/files/digest-ziproxy-1.5.2 b/net-proxy/ziproxy/files/digest-ziproxy-1.5.2 deleted file mode 100644 index f329c4a66405..000000000000 --- a/net-proxy/ziproxy/files/digest-ziproxy-1.5.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 c5bd73687f4376bd5cf68f3e2fe13367 ziproxy-1.5.2.tar.bz2 121104 diff --git a/net-proxy/ziproxy/files/ziproxy.confd b/net-proxy/ziproxy/files/ziproxy.confd deleted file mode 100644 index e110cc0d1709..000000000000 --- a/net-proxy/ziproxy/files/ziproxy.confd +++ /dev/null @@ -1,14 +0,0 @@ -# configuraton file for /etc/init.d/ziproxy - -# location of the ziproxy config file -# -#CONFIG="/etc/ziproxy.conf" - -# following option has the same meaning, but higher precedence -# as "OnlyFrom=" option in configuration file. Uncomment it -# if you want to set it. -# -#ONLYFROM="<IP.address or hostname>" - -# Change to this username/uid before starting the process. -RUNAS="nobody:nogroup" diff --git a/net-proxy/ziproxy/files/ziproxy.initd b/net-proxy/ziproxy/files/ziproxy.initd deleted file mode 100644 index 8b7b2a4a959a..000000000000 --- a/net-proxy/ziproxy/files/ziproxy.initd +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/ziproxy/files/ziproxy.initd,v 1.2 2005/10/08 16:38:58 sbriesen Exp $ - -depend() { - need net -} - -start() { - local OPT="" EXTRA="" - ebegin "Starting ziproxy" - [ -n "${CONFIG}" ] && OPT="-c ${CONFIG}" || OPT="-c /etc/ziproxy.conf" - [ -n "${ONLYFROM}" ] && OPT="${OPT} -f ${ONLYFROM}" - [ -n "${RUNAS}" ] && EXTRA="--chuid ${RUNAS}" - start-stop-daemon --quiet --start --background ${EXTRA} \ - --make-pidfile --pidfile /var/run/ziproxy.pid \ - --exec /usr/bin/netd -- ${OPT} - eend $? -} - -stop() { - ebegin "Stopping ziproxy" - start-stop-daemon --stop --quiet --pidfile /var/run/ziproxy.pid - eend $? -} |