From: ecashin@coraid.com Date: Tue, 19 Apr 2005 05:00:19 +0000 (-0700) Subject: [PATCH] aoe 4/12: handle distros that have a udev rules X-Git-Tag: v2.6.12-rc3~24^2~6 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=fa83c2ddd4293bd8bcaeeaf14bfdbf2fbe810420;p=linux-2.6-omap-h63xx.git [PATCH] aoe 4/12: handle distros that have a udev rules handle distros that have a udev rules file instead of dir Signed-off-by: Ed L. Cashin Signed-off-by: Greg Kroah-Hartman --- diff --git a/Documentation/aoe/udev-install.sh b/Documentation/aoe/udev-install.sh index 861a27f9877..6449911c6a7 100644 --- a/Documentation/aoe/udev-install.sh +++ b/Documentation/aoe/udev-install.sh @@ -23,4 +23,8 @@ fi # /etc/udev/rules.d # rules_d="`sed -n '/^udev_rules=/{ s!udev_rules=!!; s!\"!!g; p; }' $conf`" -test "$rules_d" && sh -xc "cp `dirname $0`/udev.txt $rules_d/60-aoe.rules" +if test -z "$rules_d" || test ! -d "$rules_d"; then + echo "$me Error: cannot find udev rules directory" 1>&2 + exit 1 +fi +sh -xc "cp `dirname $0`/udev.txt $rules_d/60-aoe.rules"