7b7a37b77b
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1194 6952d904-891a-0410-993b-d76249ca496b
17 lines
450 B
Plaintext
Executable File
17 lines
450 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/files/lircd,v 1.6 2004/09/26 21:27:07 lanius Exp $
|
|
|
|
start() {
|
|
ebegin "Starting lircd"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/lircd -- ${LIRCD_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping lircd"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/lircd
|
|
eend $?
|
|
}
|