]> git.ozlabs.org Git - petitboot/commitdiff
Fix path in udev rule example
authorJeremy Kerr <jk@ozlabs.org>
Thu, 20 Dec 2007 15:31:02 +0000 (00:31 +0900)
committerJeremy Kerr <jk@ozlabs.org>
Thu, 20 Dec 2007 15:31:02 +0000 (00:31 +0900)
The default prefix is /usr, so the correct path to the udev-helper
script is /usr/sbin.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
utils/99-petitboot.rules

index 9b1a8c5c1d1f67bf28e0680b67f8140497e2ff33..ea34a0a3c1aca0850c81763863f0f5c3fe2da077 100644 (file)
@@ -1,2 +1,2 @@
 # tell petitboot when we see new block devices ...
-SUBSYSTEM=="block",RUN+="/sbin/udev-helper"
+SUBSYSTEM=="block",RUN+="/usr/sbin/udev-helper"