diff options
Diffstat (limited to 'sys-apps/hal/files/hald')
-rw-r--r-- | sys-apps/hal/files/hald | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-apps/hal/files/hald b/sys-apps/hal/files/hald index 8711523cfb89..f9bc944de847 100644 --- a/sys-apps/hal/files/hald +++ b/sys-apps/hal/files/hald @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/files/hald,v 1.1 2004/08/17 21:01:52 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/files/hald,v 1.2 2004/09/20 22:58:00 foser Exp $ depend() { @@ -14,7 +14,6 @@ start() { ebegin "Starting Hardware Abstraction Layer daemon" start-stop-daemon --start -q --exec /usr/sbin/hald - echo `/sbin/pidof hald` > /var/run/hald.pid eend $? @@ -24,7 +23,7 @@ stop() { ebegin "Stopping Hardware Abstraction Layer daemon" - start-stop-daemon --stop -q --pidfile /var/run/hald.pid + start-stop-daemon --stop -q --pidfile /var/run/hald/hald.pid eend $? |