File: lirc.irexec.init

package info (click to toggle)
lirc 0.9.4c-9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,264 kB
  • ctags: 5,536
  • sloc: ansic: 26,459; cpp: 9,138; sh: 5,492; python: 2,996; makefile: 873; xml: 63
file content (69 lines) | stat: -rw-r--r-- 1,728 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
### BEGIN INIT INFO
# Provides:          irexec
# Required-Start:    $local_fs $remote_fs $syslog lircd
# Required-Stop:     $local_fs $remote_fs $syslog lircd
# Should-Start:      lircmd
# Should-Stop:       lircmd
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Starts LIRC IREXEC daemon.
# Description:       IREXEC runs programs with one button press.
### END INIT INFO

# source generic LSB initscript helpers
. /lib/lsb/init-functions

# check if the lirc package is still installed and this not a stale conffile
test -x /usr/bin/irexec  || exit 0

# sanity checks for starting irexec
if [ ! -f /etc/lirc/lircrc ] || \
   [ "$(grep -v -e ^[\ \t]*\# -e ^$ /etc/lirc/lircrc | wc -l)" -eq 0 ]; then
	ENABLE_IREXEC="no"
fi


case "$1" in
	start)
		# start irexec
		if [ "$ENABLE_IREXEC" = "yes" ]; then
			log_daemon_msg "Starting irexec daemon" "irexec"
			start-stop-daemon --start --quiet --oknodo \
				--exec /usr/bin/irexec -- \
				-d /etc/lirc/lircrc < /dev/null
			log_end_msg $?
		fi
		;;
	stop)
		if [ "$ENABLE_IREXEC" = "yes" ]; then
			log_daemon_msg "Stopping irexec daemon" "irexec"
			start-stop-daemon --stop --quiet \
				--exec /usr/bin/irexec
			log_end_msg $?
		fi
		;;
	reload|force-reload)
		if [ "$ENABLE_IREXEC" = "yes" ]; then
			log_daemon_msg "Reload configuration for irexec daemon" "IREXEC"
			start-stop-daemon --stop --quiet --signal 1 \
				--exec /usr/bin/irexec
			log_end_msg $?
		fi
		;;
	restart)
		$0 stop
		$0 start
		;;
	status)
		if [ "$ENABLE_IREXEC" = "yes" ]; then
			status_of_proc /usr/bin/irexec irexec  || exit $?
		fi
		;;
	*)
		echo "Usage: /etc/init.d/irexec {start|stop|reload|restart|force-reload|status}"
		exit 1
		;;
esac

exit 0