summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/inspircd/files/init.d_inspircd')
-rw-r--r--net-irc/inspircd/files/init.d_inspircd37
1 files changed, 0 insertions, 37 deletions
diff --git a/net-irc/inspircd/files/init.d_inspircd b/net-irc/inspircd/files/init.d_inspircd
deleted file mode 100644
index 6a1844a8125a..000000000000
--- a/net-irc/inspircd/files/init.d_inspircd
+++ /dev/null
@@ -1,37 +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-irc/inspircd/files/init.d_inspircd,v 1.4 2007/11/12 21:47:33 hansmi Exp $
-
-opts="${opts} rehash version"
-
-depend() {
- need net
- provide ircd
-}
-
-start() {
- ebegin "Starting InspIRCd"
- start-stop-daemon --start --quiet --chuid inspircd \
- --exec /usr/bin/inspircd -- \
- --logfile /var/log/inspircd/ircd.log &> /dev/null
- eend $?
-}
-
-stop() {
- ebegin "Stopping InspIRCd"
- start-stop-daemon --stop --quiet --exec /usr/bin/inspircd
- eend $?
-}
-
-rehash() {
- ebegin "Rehashing InspIRCd"
- /usr/lib/inspircd/inspircd.launcher/inspircd rehash &> /dev/null
- eend $?
-}
-
-version() {
- ebegin "Retrieve InspIRCd version"
- /usr/lib/inspircd/inspircd.launcher/inspircd version
- eend $?
-}