diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-02-16 16:38:27 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-02-16 16:38:27 +0000 |
commit | 26a267632711d1b13c036e2f7c5ec494bb2ccb60 (patch) | |
tree | ead769970257c985116059048515466fefdf3a32 /net-misc/stunnel/files | |
parent | fix bug 179377, with a dependency adjustment to proper slots of sys-libs/db, ... (diff) | |
download | gentoo-2-26a267632711d1b13c036e2f7c5ec494bb2ccb60.tar.gz gentoo-2-26a267632711d1b13c036e2f7c5ec494bb2ccb60.tar.bz2 gentoo-2-26a267632711d1b13c036e2f7c5ec494bb2ccb60.zip |
Remove old.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-misc/stunnel/files')
-rw-r--r-- | net-misc/stunnel/files/stunnel.rc6.4.20 | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/net-misc/stunnel/files/stunnel.rc6.4.20 b/net-misc/stunnel/files/stunnel.rc6.4.20 deleted file mode 100644 index b8bdfe5e29cd..000000000000 --- a/net-misc/stunnel/files/stunnel.rc6.4.20 +++ /dev/null @@ -1,34 +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-misc/stunnel/files/stunnel.rc6.4.20,v 1.1 2007/12/08 10:38:26 ulm Exp $ - -# Default pidfile location -PIDFILE="/var/run/stunnel/stunnel.pid" - -checkconfig() { - # To ensure backwards compatibility - if [ ! -z "$(egrep '/etc/stunnel/stunnel.pid' /etc/stunnel/stunnel.conf)" ] ; then - ewarn "Please update your stunnel.conf!" - ewarn "pid should point to /var/run/stunnel/stunnel.pid" - PIDFILE="/etc/stunnel/stunnel.pid" - fi -} - -depend() { - need net -} - -start() { - checkconfig - ebegin "Starting stunnel" - start-stop-daemon --start --pidfile ${PIDFILE} --quiet --exec /usr/sbin/stunnel -- /etc/stunnel/stunnel.conf - eend $? -} - -stop() { - checkconfig - ebegin "Stopping stunnel" - start-stop-daemon --stop --quiet --pidfile ${PIDFILE} - eend $? -} |