diff options
author | Ross Burton <ross@openedhand.com> | 2007-08-03 18:01:14 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-08-03 18:01:14 +0000 |
commit | 3ff099a44e8521863cc7b773314d6c77fef33eb5 (patch) | |
tree | 765878d0f6943a9e93f03c61c444524daebb069a /meta/packages/hal/files | |
parent | d0bcc8d87f2723a1b6e3dd9231f51d9d3bf3d916 (diff) | |
download | openembedded-core-3ff099a44e8521863cc7b773314d6c77fef33eb5.tar.gz openembedded-core-3ff099a44e8521863cc7b773314d6c77fef33eb5.tar.bz2 openembedded-core-3ff099a44e8521863cc7b773314d6c77fef33eb5.zip |
Install a startup script, fix volatiles. Should now auto-start
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2357 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/hal/files')
-rwxr-xr-x | meta/packages/hal/files/20hal | 58 | ||||
-rw-r--r-- | meta/packages/hal/files/99_hal | 1 |
2 files changed, 59 insertions, 0 deletions
diff --git a/meta/packages/hal/files/20hal b/meta/packages/hal/files/20hal new file mode 100755 index 0000000000..ff6ffc2b4c --- /dev/null +++ b/meta/packages/hal/files/20hal @@ -0,0 +1,58 @@ +#! /bin/sh +# +# hal Start the Daemon that stores device informations +# for the Hardware abstraction layer +# +# Written by Martin Waitz based on skeleton code +# written by Miquel van Smoorenburg <miquels@cistron.nl>. +# Modified for Debian +# by Ian Murdock <imurdock@gnu.ai.mit.edu>. +# + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/hald +PIDDIR=/var/run/hald +PIDFILE=$PIDDIR/hald.pid +NAME=hald +DAEMONUSER=haldaemon +DESC="Hardware abstraction layer" + +test -x $DAEMON || exit 0 + +set -e + +do_start() { + if [ ! -d $PIDDIR ]; then + mkdir -p $PIDDIR + chown $DAEMONUSER:$DAEMONUSER $PIDDIR + fi + echo "Starting $DESC" "$NAME" + start-stop-daemon --start --pidfile $PIDFILE \ + --exec $DAEMON -- $DAEMON_OPTS +} + +do_stop() { + echo "Stopping $DESC" "$NAME" + start-stop-daemon --stop --oknodo --quiet --pidfile $PIDFILE \ + --exec $DAEMON +} + +case "$1" in + start) + do_start + ;; + stop) + do_stop + ;; + restart|force-reload) + do_stop + sleep 5 + do_start + ;; + *) + echo "Usage: $0 {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/meta/packages/hal/files/99_hal b/meta/packages/hal/files/99_hal index f3d477231e..c82da990ba 100644 --- a/meta/packages/hal/files/99_hal +++ b/meta/packages/hal/files/99_hal @@ -1 +1,2 @@ d root root 0700 /var/run/hald none +d haldaemon haldaemon 0755 /var/cache/hald none |