summaryrefslogtreecommitdiff
path: root/libre/lirc-libre/irexecd
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-06-17 13:23:34 -0300
committerAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-06-17 13:23:34 -0300
commit51326121eaee8da99ca23154ff56f97b0e987cb9 (patch)
tree329a1b52db97a08497b80d797a2981d53c471a90 /libre/lirc-libre/irexecd
parent1202d543cfd8884bcd7529e59c614c536103d2a6 (diff)
including lirc-libre and lirc-utils-libre to libre repo
Diffstat (limited to 'libre/lirc-libre/irexecd')
-rw-r--r--libre/lirc-libre/irexecd38
1 files changed, 38 insertions, 0 deletions
diff --git a/libre/lirc-libre/irexecd b/libre/lirc-libre/irexecd
new file mode 100644
index 000000000..a64b033a5
--- /dev/null
+++ b/libre/lirc-libre/irexecd
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/irexec.conf
+
+PID=`pidof -o %PPID /usr/bin/irexec`
+case "$1" in
+ start)
+ stat_busy "Starting IREXEC Daemon"
+ [ -z "$PID" ] && /usr/bin/irexec --daemon $IREXEC_OPTS
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ add_daemon irexecd
+ stat_done
+ fi
+ ;;
+ stop)
+ stat_busy "Stopping IREXEC Daemon"
+ [ ! -z "$PID" ] && kill $PID &> /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ rm_daemon irexecd
+ stat_done
+ fi
+ ;;
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac
+exit 0
+