mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=573846 Package-Manager: portage-2.2.26
18 lines
297 B
Groff
18 lines
297 B
Groff
#!/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 $?
|
|
}
|