summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/lcdproc/lcdd
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verison.net>2010-04-05 21:16:33 (GMT)
committerMichael Hanson <hansonorders@verison.net>2010-04-05 21:16:33 (GMT)
commitbe834a1587a6fb592cdd3d3205c1636547a7815d (patch)
treee116e56a5d99e5cb62fa560d2cd83ce5d73255b6 /abs/extra-testing/lcdproc/lcdd
parentafa63da99592c0050461d2118d8f34d875baf630 (diff)
downloadlinhes_pkgbuild-be834a1587a6fb592cdd3d3205c1636547a7815d.zip
linhes_pkgbuild-be834a1587a6fb592cdd3d3205c1636547a7815d.tar.gz
linhes_pkgbuild-be834a1587a6fb592cdd3d3205c1636547a7815d.tar.bz2
lcdproc: updated to 0.5.3 and added runit support. Needs testing.
ref #673
Diffstat (limited to 'abs/extra-testing/lcdproc/lcdd')
-rwxr-xr-xabs/extra-testing/lcdproc/lcdd38
1 files changed, 0 insertions, 38 deletions
diff --git a/abs/extra-testing/lcdproc/lcdd b/abs/extra-testing/lcdproc/lcdd
deleted file mode 100755
index a124c00..0000000
--- a/abs/extra-testing/lcdproc/lcdd
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/LCDd`
-case "$1" in
- start)
- stat_busy "Starting LCDd daemon"
- [ -z "$PID" ] && /usr/sbin/LCDd -c /etc/LCDd.conf
- if [ $? -gt 0 ]; then
- stat_fail
- else
- echo $PID > /var/run/lcdd.pid
- add_daemon lcdd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping LCDd daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm /var/run/lcdd.pid
- rm_daemon lcdd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0