diff options
author | 2005-04-22 22:19:19 +0000 | |
---|---|---|
committer | 2005-04-22 22:19:19 +0000 | |
commit | a7877ccefd2c1f6c1fb4548435f48c167d463b51 (patch) | |
tree | 148b73e86cb84a76ad83f06d4d3b216f998594db /net-proxy/nylon/files/nylon.init | |
parent | Added to ~ppc. (diff) | |
download | historical-a7877ccefd2c1f6c1fb4548435f48c167d463b51.tar.gz historical-a7877ccefd2c1f6c1fb4548435f48c167d463b51.tar.bz2 historical-a7877ccefd2c1f6c1fb4548435f48c167d463b51.zip |
net-misc/nylon -> net-proxy/nylon
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-proxy/nylon/files/nylon.init')
-rw-r--r-- | net-proxy/nylon/files/nylon.init | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-proxy/nylon/files/nylon.init b/net-proxy/nylon/files/nylon.init new file mode 100644 index 000000000000..034a0d15d766 --- /dev/null +++ b/net-proxy/nylon/files/nylon.init @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/nylon/files/nylon.init,v 1.1 2005/04/22 22:19:19 mrness Exp $ + +depend() { + need net +} + +start() { + ebegin "Starting Nylon" + start-stop-daemon --start --quiet --pidfile /var/run/nylon.pid \ + --startas /usr/bin/nylon + eend $? +} + +stop() { + ebegin "Stopping Nylon" + start-stop-daemon --stop --quiet --pidfile /var/run/nylon.pid + eend $? +} + + |