diff options
Diffstat (limited to '')
-rw-r--r-- | www-servers/hiawatha/files/hiawatha.initd | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www-servers/hiawatha/files/hiawatha.initd b/www-servers/hiawatha/files/hiawatha.initd deleted file mode 100644 index 9c04296..0000000 --- a/www-servers/hiawatha/files/hiawatha.initd +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -depend() { - need net -} - -start() { - ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --exec "/usr/sbin/hiawatha" \ - --pidfile "/var/run/hiawatha.pid" - eend $? -} - -stop() { - ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --exec "/usr/sbin/hiawatha" \ - --pidfile "/var/run/hiawatha.pid" - eend $? -} |