Viitor_upstart/etc/init/hotplug.conf
kueller b8cad77ef6 hotplug wird nun erst nach beendigung von virtualfs gestartetet - danach ist auch das von
hotplug benötigte /proc gemounted



git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_upstart@5607 504e572c-2e33-0410-9681-be2bf7408885
2010-05-01 11:43:39 +00:00

17 lines
360 B
Plaintext

description "Startup Hotplug Service"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on stopped virtualfs
script
echo "starting hotplug scripts"
source /etc/init/functions
for RC in /etc/hotplug/*.rc; do
$RC start
done
touch /var/lock/subsys/hotplug
status_message "hotplug startup ready"
end script