Viitor_upstart/etc/event.d/hotplug

15 lines
282 B
Plaintext
Raw Normal View History

# rc - runlevel compatibility
#
# This task guesses what the "default runlevel" should be and starts the
# appropriate script.
start on started udev
script
source /etc/init.d/functions
for RC in /etc/hotplug/*.rc; do
$RC start
done
touch /var/lock/subsys/hotplug
end script