diff options
author | ecashin@coraid.com <ecashin@coraid.com> | 2005-04-18 22:00:19 -0700 |
---|---|---|
committer | Greg KH <greg@press.kroah.org> | 2005-04-18 22:00:19 -0700 |
commit | fa83c2ddd4293bd8bcaeeaf14bfdbf2fbe810420 (patch) | |
tree | 9c01fd2b1285b5340d8e1e7e29397897536bf5e4 /Documentation/aoe/udev-install.sh | |
parent | b68650fd3f31d47426a2b1c6cfad904880258423 (diff) |
[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 <ecashin@coraid.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'Documentation/aoe/udev-install.sh')
-rw-r--r-- | Documentation/aoe/udev-install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/aoe/udev-install.sh b/Documentation/aoe/udev-install.sh index 861a27f98771..6449911c6a71 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" |