Vorbereitung auf upstart

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_hald@5536 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-04-20 16:15:14 +00:00
parent 183b335203
commit b82d011a94
2 changed files with 41 additions and 15 deletions

24
etc/init/hald.conf Normal file
View File

@ -0,0 +1,24 @@
description "Hardware Abstraction Layer daemon startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started dbus))
stop on runlevel [S016]
console none
pre-start script
if [ ! -f /usr/share/pci.ids ]; then
if [ -f /usr/share/pci.ids.gz ]; then
gzip -d -c /usr/share/pci.ids.gz >/usr/share/pci.ids
fi
fi
if [ ! -f /usr/share/usb.ids ]; then
if [ -f /usr/share/usb.ids.gz ]; then
gzip -d -c /usr/share/usb.ids.gz >/usr/share/usb.ids
fi
fi
end script
exec /usr/sbin/hald --daemon=no --verbose=yes --use-syslog

View File

@ -25,18 +25,20 @@
#
#
WDIR=`pwd`
cd etc/init.d
chmod 755 dbus
mkdir rc{0,1,2,3,4,5,6}.d
for i in 0 1 6; do
cd rc$i.d
ln -s ../hald K70hald
cd ..
done
for i in 2 3 4 5; do
cd rc$i.d
ln -s ../hald S14hald
cd ..
done
cd $WDIR
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d
chmod 755 dbus
mkdir rc{0,1,2,3,4,5,6}.d
for i in 0 1 6; do
cd rc$i.d
ln -s ../hald K70hald
cd ..
done
for i in 2 3 4 5; do
cd rc$i.d
ln -s ../hald S14hald
cd ..
done
cd $WDIR
fi