summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Sachau <tommy@gentoo.org>2008-12-12 16:19:12 +0000
committerThomas Sachau <tommy@gentoo.org>2008-12-12 16:19:12 +0000
commitf6801030815378061629ab2b5a634073c5272438 (patch)
treeaf1f2923f4a8b352bc28038fbf07ae1bbc51cbf6 /app-misc/heyu/files/2.3.2/heyu.init
parentapp-misc/heyu: Drop old version (diff)
downloadsunrise-f6801030815378061629ab2b5a634073c5272438.tar.gz
sunrise-f6801030815378061629ab2b5a634073c5272438.tar.bz2
sunrise-f6801030815378061629ab2b5a634073c5272438.zip
app-misc/heyu: Drop old files too
svn path=/sunrise/; revision=7489
Diffstat (limited to 'app-misc/heyu/files/2.3.2/heyu.init')
-rw-r--r--app-misc/heyu/files/2.3.2/heyu.init24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-misc/heyu/files/2.3.2/heyu.init b/app-misc/heyu/files/2.3.2/heyu.init
deleted file mode 100644
index e8ff76e0d..000000000
--- a/app-misc/heyu/files/2.3.2/heyu.init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-start() {
- ebegin "Starting heyu"
- mkdir /var/tmp/heyu 2>/dev/null
- chmod a=rwx /var/tmp/heyu
- /usr/bin/heyu start >/dev/null
- eend $?
-}
-
-stop() {
- ebegin "Stopping heyu"
- /usr/bin/heyu stop
- eend $?
-}
-
-restart() {
- svc_stop
- sleep 5
- svc_start
-}