summaryrefslogtreecommitdiff
path: root/libre/lirc-libre/lircmd
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@parabola.nu>2013-04-22 12:55:18 -0300
committerNicolás Reynolds <fauno@parabola.nu>2013-04-22 12:55:18 -0300
commit5d73e0d0fbcfdd552a97bb37d173f8d9a38750a3 (patch)
tree9d8940bd842b4ffd37c86f2074e45f4923f51f5f /libre/lirc-libre/lircmd
parent20e5a1a55a7bf5d317ba7f8397713be3873a7616 (diff)
parent4e46a07ffcebe8aeee045615623bc141df8f6466 (diff)
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre/lirc-libre/lircmd')
-rw-r--r--libre/lirc-libre/lircmd36
1 files changed, 0 insertions, 36 deletions
diff --git a/libre/lirc-libre/lircmd b/libre/lirc-libre/lircmd
deleted file mode 100644
index 220c47c9c..000000000
--- a/libre/lirc-libre/lircmd
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/lircmd`
-case "$1" in
- start)
- stat_busy "Starting lircmd Daemon"
- [ -z "$PID" ] && /usr/sbin/lircmd
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon lircmd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping lircmd Daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon lircmd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0