summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornkessel <hd_brummy@gentoo.org>2016-07-03 22:01:19 +0200
committerJoerg Bornkessel <hd_brummy@gentoo.org>2016-07-03 22:01:19 +0200
commitcb1837543f164cf7e8a97416470d601ffb30d975 (patch)
treebdbab25ad9fe8b3ac4c88e271c275675f8825fc5 /media-video/reelbox-ehd-bin/files/reelbox-ehd
parentmass masked for cleanup the overlay, ebuilds dead and not maintained anymore (diff)
downloadtesting-cb1837543f164cf7e8a97416470d601ffb30d975.tar.gz
testing-cb1837543f164cf7e8a97416470d601ffb30d975.tar.bz2
testing-cb1837543f164cf7e8a97416470d601ffb30d975.zip
clean up all packages, wrt bug 557798HEADmaster
Diffstat (limited to 'media-video/reelbox-ehd-bin/files/reelbox-ehd')
-rw-r--r--media-video/reelbox-ehd-bin/files/reelbox-ehd34
1 files changed, 0 insertions, 34 deletions
diff --git a/media-video/reelbox-ehd-bin/files/reelbox-ehd b/media-video/reelbox-ehd-bin/files/reelbox-ehd
deleted file mode 100644
index 3191f2e..0000000
--- a/media-video/reelbox-ehd-bin/files/reelbox-ehd
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-depend() {
- need modules
-}
-
-start() {
-
- ebegin "Starting hdboot"
-
- cd /opt/reelbox-ehd
-
- /usr/bin/hdboot -w 15 -i linux.bin > /dev/null 2>&1
-
- sleep 4
-
- start-stop-daemon -b --start --exec /usr/bin/shmnetd --pidfile /var/run/shmnetd.pid -m
-
- eend $?
-}
-
-stop() {
-
- ebegin "Stopping hdboot"
-
- start-stop-daemon --stop --quiet \
- --pidfile /var/run/shmnetd.pid --exec /usr/bin/shmnetd
- local ret=$?
- rm -f /var/run/shmnetd.pid
- eend ${ret}
-}