summaryrefslogtreecommitdiffstats
path: root/hooks/udev
blob: 0340a9c98bca5d16b013c37c953faac00e615635 (plain)
1
2
3
4
5
6
7
8
9
# vim: set ft=sh:
run_hook ()
{
    msg -n ":: Triggering uevents..."
    /sbin/udevadm trigger --action=add --type=subsystems
    /sbin/udevadm trigger --action=add --type=devices
    /sbin/udevadm settle
    msg "done."
}