55473f736f
- fixed booting with rd.iscsi.firmware and without root= - fips: include crct10dif_generic - fixed missing modules in hostonly, which have no modalias - moved dracut to /usr/sbin
23 lines
748 B
Diff
23 lines
748 B
Diff
From 0106da599a227cf1c28c3648b7e77985f617b878 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Tsoy <alexander@tsoy.me>
|
|
Date: Fri, 25 Oct 2013 17:06:44 +0200
|
|
Subject: [PATCH] usrmount/module-setup.sh: fixed typo
|
|
|
|
---
|
|
modules.d/98usrmount/module-setup.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/98usrmount/module-setup.sh b/modules.d/98usrmount/module-setup.sh
|
|
index 1af789f..d8a0ec2 100755
|
|
--- a/modules.d/98usrmount/module-setup.sh
|
|
+++ b/modules.d/98usrmount/module-setup.sh
|
|
@@ -7,7 +7,7 @@ check() {
|
|
local _init
|
|
[[ $mount_needs ]] && return 1
|
|
_init=$(readlink -f /sbin/init)
|
|
- [[ "$init" == "${init##/usr}" ]] && return 255
|
|
+ [[ "$_init" == "${_init##/usr}" ]] && return 255
|
|
return 0
|
|
}
|
|
|