summaryrefslogtreecommitdiff
blob: dc599f36e92569bda6b209eea768959e07ce5c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run

depend() {
	provide lirc
}

start() {
	ebegin "Starting inputlircd"
	start-stop-daemon --start --quiet --exec /usr/sbin/inputlircd -- ${INPUTLIRCD_OPTS}
	eend $?
}

stop() {
	ebegin "Stopping inputlircd"
	start-stop-daemon --stop --quiet --exec /usr/sbin/inputlircd
	eend $?
}