diff options
Diffstat (limited to 'main/ngircd/ngircd.initd')
-rw-r--r-- | main/ngircd/ngircd.initd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/main/ngircd/ngircd.initd b/main/ngircd/ngircd.initd new file mode 100644 index 000000000..807d844e8 --- /dev/null +++ b/main/ngircd/ngircd.initd @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/files/ngircd.init.d,v 1.3 2006/01/02 15:31:27 swegener Exp $ + +depend() { + need net + provide ircd +} + +start() { + ebegin "Starting ngIRCd" + start-stop-daemon --start --quiet --exec /usr/sbin/ngircd + eend $? "Failed to start ngIRCd" +} + +stop() { + ebegin "Stopping ngIRCd" + start-stop-daemon --stop --quiet --exec /usr/sbin/ngircd + eend $? "Failed to stop ngIRCd" +} |