You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/inputlircd/files/inputlircd.init.2

18 lines
297 B

#!/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 $?
}