You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
612 B
22 lines
612 B
From 8d7bd6af195ef6a7bd5caa89995084a8b484207c Mon Sep 17 00:00:00 2001 |
|
From: Harald Hoyer <harald@redhat.com> |
|
Date: Sat, 2 Nov 2013 13:14:40 +0100 |
|
Subject: [PATCH] dracut.sh: fixed PATH shortener |
|
|
|
--- |
|
dracut.sh | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/dracut.sh b/dracut.sh |
|
index 59d3e4b2..bb7e91e6 100755 |
|
--- a/dracut.sh |
|
+++ b/dracut.sh |
|
@@ -533,7 +533,7 @@ for i in /usr/sbin /sbin /usr/bin /bin; do |
|
if [ -L "$i" ]; then |
|
rl=$(readlink -f $i) |
|
fi |
|
- if [[ "$NPATH" != "*:$rl*" ]] ; then |
|
+ if [[ "$NPATH" != *:$rl* ]] ; then |
|
NPATH+=":$rl" |
|
fi |
|
done
|
|
|