summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Briesenick <sbriesen@gentoo.org>2007-11-18 02:10:43 +0000
committerStefan Briesenick <sbriesen@gentoo.org>2007-11-18 02:10:43 +0000
commit921b745d688b4bb1d1e5f1ee9a48136bfa128cb9 (patch)
tree0972cc9fda896fb533bb9a166e4c569572070caf /net-proxy/ziproxy/files
parentversion bump. (diff)
downloadhistorical-921b745d688b4bb1d1e5f1ee9a48136bfa128cb9.tar.gz
historical-921b745d688b4bb1d1e5f1ee9a48136bfa128cb9.tar.bz2
historical-921b745d688b4bb1d1e5f1ee9a48136bfa128cb9.zip
removed old version.
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'net-proxy/ziproxy/files')
-rw-r--r--net-proxy/ziproxy/files/digest-ziproxy-2.2.23
-rw-r--r--net-proxy/ziproxy/files/ziproxy-2.2.confd18
-rw-r--r--net-proxy/ziproxy/files/ziproxy-2.2.initd26
3 files changed, 0 insertions, 47 deletions
diff --git a/net-proxy/ziproxy/files/digest-ziproxy-2.2.2 b/net-proxy/ziproxy/files/digest-ziproxy-2.2.2
deleted file mode 100644
index fa30ae93a380..000000000000
--- a/net-proxy/ziproxy/files/digest-ziproxy-2.2.2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b2c1e1b7efa4db50b97d69b126815bba ziproxy-2.2.2.tar.bz2 145733
-RMD160 10442335f5cf64e8205c93a707dd3e9ab233b6b6 ziproxy-2.2.2.tar.bz2 145733
-SHA256 6fbf4134e84311d4590f907b37b5ae2ee0af5dc5d8fc6457edf4129635dc7bb9 ziproxy-2.2.2.tar.bz2 145733
diff --git a/net-proxy/ziproxy/files/ziproxy-2.2.confd b/net-proxy/ziproxy/files/ziproxy-2.2.confd
deleted file mode 100644
index 793b8c666739..000000000000
--- a/net-proxy/ziproxy/files/ziproxy-2.2.confd
+++ /dev/null
@@ -1,18 +0,0 @@
-# configuraton file for /etc/init.d/ziproxy
-#
-# you can symlink /etc/init.d/ziproxy to a different name
-# and then copy this config to a new file with the same name
-# as the symlinked init-script to run multiple instances of
-# ziproxy. You have to change the location for CONFIG then
-# of course... ;-)
-
-# Full path to ziproxy.conf file (instead of default one).
-#
-#CONFIG="/etc/ziproxy.conf"
-
-# Limit incoming connections only from the specified address(es).
-# This 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>"
diff --git a/net-proxy/ziproxy/files/ziproxy-2.2.initd b/net-proxy/ziproxy/files/ziproxy-2.2.initd
deleted file mode 100644
index 3c843a7ecf64..000000000000
--- a/net-proxy/ziproxy/files/ziproxy-2.2.initd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/ziproxy/files/ziproxy-2.2.initd,v 1.1 2007/05/11 21:26:00 sbriesen Exp $
-
-depend() {
- need net
-}
-
-start() {
- local OPT="-d"
- ebegin "Starting ${myservice}"
-
- [ -n "${CONFIG}" ] && OPT="${OPT} -c ${CONFIG}"
- [ -n "${ONLYFROM}" ] && OPT="${OPT} -f ${ONLYFROM}"
-
- start-stop-daemon --quiet --start --pidfile /var/run/${myservice}.pid \
- --chuid ziproxy:ziproxy --exec /usr/sbin/ziproxy -- ${OPT} > /var/run/${myservice}.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping ziproxy"
- start-stop-daemon --stop --quiet --pidfile /var/run/${myservice}.pid
- eend $?
-}