Created
November 12, 2016 17:56
-
-
Save rgstephens/85de07d709627e8e9615194fb662112c to your computer and use it in GitHub Desktop.
LIRC startup script /etc/init.d/lircd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# | |
# This is an init script for Debian Sid | |
# Copy it to /etc/init.d/lirc and type | |
# > update-rc.d lirc defaults 20 | |
# | |
test -f /usr/local/sbin/lircd || exit 0 | |
case "$1" in | |
start) | |
# in case your lirc dev points are not created automatically, the next | |
# line will create them. | |
test -c /dev/lirc || (mkdir -p -- . /dev && /bin/mknod /dev/lirc c 61 0) | |
echo -n "Starting lirc daemon: lircd" | |
start-stop-daemon --start --quiet --exec /usr/local/sbin/lircd -- --device=/dev/lirc | |
echo "." | |
;; | |
stop) | |
echo -n "Stopping lirc daemon: lircd" | |
start-stop-daemon --stop --quiet --exec /usr/local/sbin/lircd | |
echo "." | |
;; | |
reload|force-reload) | |
start-stop-daemon --stop --quiet --signal 1 --exec /usr/local/sbin/lircd | |
;; | |
restart) | |
echo -n "Stopping lirc daemon: lircd" | |
start-stop-daemon --stop --quiet --exec /usr/local/sbin/lircd | |
sleep 1 | |
echo -n "Starting lirc daemon: lircd" | |
start-stop-daemon --start --quiet --exec /usr/local/sbin/lircd -- --device=/dev/lirc | |
echo "." | |
;; | |
*) | |
echo "Usage: /etc/init.d/lircd {start|stop|reload|restart|force-reload}" | |
exit 1 | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment