mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 22:28:00 +00:00
[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>
This commit is contained in:
parent
b68650fd3f
commit
fa83c2ddd4
1 changed files with 5 additions and 1 deletions
|
@ -23,4 +23,8 @@ fi
|
||||||
# /etc/udev/rules.d
|
# /etc/udev/rules.d
|
||||||
#
|
#
|
||||||
rules_d="`sed -n '/^udev_rules=/{ s!udev_rules=!!; s!\"!!g; p; }' $conf`"
|
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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue