7b7a37b77b
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1194 6952d904-891a-0410-993b-d76249ca496b
29 lines
808 B
Plaintext
Executable File
29 lines
808 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# Copyright 2003 Martin Hierling <mad@cc.fh-lippe.de>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/lirc/files/irexec-initd,v 1.3 2007/05/24 20:12:16 zzam Exp $
|
|
|
|
: ${IREXEC_USER:=root}
|
|
|
|
depend() {
|
|
need lircd
|
|
}
|
|
|
|
start() {
|
|
if [ "x${IREXEC_USER}" = "xroot" -a "x${IREXEC_DISABLE_ROOT_WARNING}" != "xyes" ]; then
|
|
ewarn "Warning: Running irexec as root can open security holes"
|
|
fi
|
|
|
|
ebegin "Starting irexec"
|
|
start-stop-daemon --start --chuid ${IREXEC_USER} --user ${IREXEC_USER} --chdir / \
|
|
--exec /usr/bin/irexec -- --daemon ${IREXEC_OPTS}
|
|
eend $? "Failed to start irexec."
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping irexec"
|
|
start-stop-daemon --stop --exec /usr/bin/irexec --user ${IREXEC_USER}
|
|
eend $? "Failed to stop irexec."
|
|
}
|
|
|