38a2ddf58a
- fix crypto password timeout on the dracut side
23 lines
648 B
Diff
23 lines
648 B
Diff
From cc6f0925df421a4f7945cd80f0f88bd629454607 Mon Sep 17 00:00:00 2001
|
|
From: Harald Hoyer <harald@redhat.com>
|
|
Date: Tue, 2 Apr 2013 13:29:24 +0200
|
|
Subject: [PATCH] base/init.sh: fix version output
|
|
|
|
---
|
|
modules.d/99base/init.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/99base/init.sh b/modules.d/99base/init.sh
|
|
index b441a27..410201a 100755
|
|
--- a/modules.d/99base/init.sh
|
|
+++ b/modules.d/99base/init.sh
|
|
@@ -104,7 +104,7 @@ else
|
|
fi
|
|
|
|
[ -f /etc/initrd-release ] && . /etc/initrd-release
|
|
-[ -n "$VERSION" ] && info "dracut-$VERSION"
|
|
+[ -n "$VERSION_ID" ] && info "$NAME-$VERSION_ID"
|
|
|
|
source_conf /etc/conf.d
|
|
|