diff options
author | Ed L. Cashin <ecashin@coraid.com> | 2008-02-08 04:20:02 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:31 -0800 |
commit | 468fc53050a81d73893ce619a62914799e8d86bb (patch) | |
tree | 6bf9034ca946ae6004d332b810e3758c69af1daa /Documentation/aoe/udev-install.sh | |
parent | 1eb0da4cea28ae8f1bbe61822a2cc04e6d074e03 (diff) | |
download | talos-op-linux-468fc53050a81d73893ce619a62914799e8d86bb.tar.gz talos-op-linux-468fc53050a81d73893ce619a62914799e8d86bb.zip |
aoe: clean up udev configuration example
This patch adds a known default location for the udev configuration file and
uses the more recent "==" syntax for SUBSYSTEM and KERNEL.
Signed-off-by: Ed L. Cashin <ecashin@coraid.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/aoe/udev-install.sh')
-rw-r--r-- | Documentation/aoe/udev-install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/aoe/udev-install.sh b/Documentation/aoe/udev-install.sh index 6449911c6a71..15e86f58c036 100644 --- a/Documentation/aoe/udev-install.sh +++ b/Documentation/aoe/udev-install.sh @@ -23,7 +23,10 @@ fi # /etc/udev/rules.d # rules_d="`sed -n '/^udev_rules=/{ s!udev_rules=!!; s!\"!!g; p; }' $conf`" -if test -z "$rules_d" || test ! -d "$rules_d"; then +if test -z "$rules_d" ; then + rules_d=/etc/udev/rules.d +fi +if test ! -d "$rules_d"; then echo "$me Error: cannot find udev rules directory" 1>&2 exit 1 fi |