blob: 09040928121ce1bf7acd7162aecf040082cacb4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/files/0.5-hald.rc,v 1.5 2006/01/07 05:00:13 cardoe Exp $
depend() {
need dbus
after coldplug
}
start() {
ebegin "Starting Hardware Abstraction Layer daemon"
if [ -f /proc/acpi/event ]; then
chgrp haldaemon /proc/acpi/event
chmod 440 /proc/acpi/event
fi
start-stop-daemon --start -q --exec /usr/sbin/hald -- --use-syslog
eend $?
}
stop() {
ebegin "Stopping Hardware Abstraction Layer daemon"
start-stop-daemon --stop -q --pidfile /var/run/hald.pid
eend $?
}
|