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

14 lines
259 B

#!/sbin/openrc-run
start() {
ebegin "Starting lircd"
start-stop-daemon --start --quiet --exec /usr/sbin/inputlircd -- ${INPUTLIRCD_OPTS}
eend $?
}
stop() {
ebegin "Stopping lircd"
start-stop-daemon --stop --quiet --exec /usr/sbin/inputlircd
eend $?
}