dracut/0010-dracut-functions.sh-small-error-print-correction.patch
Harald Hoyer 12f6cc01aa dracut-022-63.git20120727
- fixed dracut-install bug if /var/tmp contains a symlink
- fixed some partx issues
2012-07-27 06:28:40 +02:00

23 lines
778 B
Diff

From f2271428d4760c7026dda9093c14fb1bf9035691 Mon Sep 17 00:00:00 2001
From: Harald Hoyer <harald@redhat.com>
Date: Tue, 24 Jul 2012 14:08:32 +0200
Subject: [PATCH] dracut-functions.sh: small error print correction
---
dracut-functions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dracut-functions.sh b/dracut-functions.sh
index 6358078..7f834f0 100755
--- a/dracut-functions.sh
+++ b/dracut-functions.sh
@@ -1135,7 +1135,7 @@ for_each_module_dir() {
for _mod in $_modcheck; do
strstr "$mods_to_load" "$_mod" && continue
strstr "$omit_dracutmodules" "$_mod" && continue
- derror "Dracut module \"$_mod\" cannot be found or installed."
+ derror "Dracut module '$_mod' cannot be found or installed."
done
}