From: Jeremy Kerr Date: Thu, 20 Dec 2007 15:31:02 +0000 (+0900) Subject: Fix path in udev rule example X-Git-Tag: v1.0.0~975 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=b20bc9a1536b8fc8d63251e1bfbcd67159242405 Fix path in udev rule example The default prefix is /usr, so the correct path to the udev-helper script is /usr/sbin. Signed-off-by: Jeremy Kerr --- diff --git a/utils/99-petitboot.rules b/utils/99-petitboot.rules index 9b1a8c5..ea34a0a 100644 --- a/utils/99-petitboot.rules +++ b/utils/99-petitboot.rules @@ -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"