Viitor_upstart/etc/init/hotplug.conf

17 lines
360 B
Plaintext
Raw Normal View History

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