#!/bin/sh

# exit without doing anything if udev is active
if test -e /dev/.udev -o -e /dev/.udevdb; then
	exit 0
fi

echo "/sbin/hotplug" > /proc/sys/kernel/hotplug

exit 0
