[firstboot][rhel6-branch][PATCH] Fix a ksh specific error in the s390 startup script (#1117749)

Martin Kolman mkolman at redhat.com
Fri Oct 23 10:34:12 UTC 2015


Resolves: rhbz#1117749
Signed-off-by: Martin Kolman <mkolman at redhat.com>
---
 scripts/firstboot.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/firstboot.sh b/scripts/firstboot.sh
index 5b4ec9d..e8003f7 100644
--- a/scripts/firstboot.sh
+++ b/scripts/firstboot.sh
@@ -7,7 +7,7 @@ FIRSTBOOT_CONF=/etc/sysconfig/firstboot
 [ -f $FIRSTBOOT_CONF ] && . $FIRSTBOOT_CONF
 
 # check if we should run firstboot
-if [ -f $FIRSTBOOT_EXEC ] && [ "${RUN_FIRSTBOOT,,}" = "yes" ]; then
+if [ -f $FIRSTBOOT_EXEC ] && [ "${RUN_FIRSTBOOT}" = "yes" ]; then
     # check if we're not on 3270 terminal and root
     if [ $(/sbin/consoletype) = "pty" ] && [ $EUID -eq 0 ]; then
         args=""
-- 
2.4.3



More information about the anaconda-patches mailing list