diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2016-08-19 23:07:35 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2016-08-19 23:07:35 +0200 |
commit | 408fde59e3d343c48c94311bc3f8e8c0c49f9c7e (patch) | |
tree | a983503ab0adec5fbc952b265387b04b814baf35 /www-servers/hiawatha/files/hiawatha.initd | |
parent | 1c39314fbf5d1e81cb94c60155e7a3a83004d82f (diff) | |
download | overlay-408fde59e3d343c48c94311bc3f8e8c0c49f9c7e.tar.gz overlay-408fde59e3d343c48c94311bc3f8e8c0c49f9c7e.tar.bz2 overlay-408fde59e3d343c48c94311bc3f8e8c0c49f9c7e.zip |
Cleanup
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 $? -} |