diff options
author | Martin Sivak <msivak@redhat.com> | 2013-01-22 15:03:09 +0100 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2013-01-22 16:14:39 +0100 |
commit | 3628ef84d6bad95497d4f728faecb11a2fd21cff (patch) | |
tree | eb914cf7dbab27f93ca318992319e7a9385b0529 /scripts/initial-setup.sh | |
parent | e5550843a076bc4d97afe23b4a1361293bc9964c (diff) | |
download | firstboot2-3628ef84d6bad95497d4f728faecb11a2fd21cff.tar.gz firstboot2-3628ef84d6bad95497d4f728faecb11a2fd21cff.tar.xz firstboot2-3628ef84d6bad95497d4f728faecb11a2fd21cff.zip |
More fixes for package review and s390 variable rename (typo)
Diffstat (limited to 'scripts/initial-setup.sh')
-rw-r--r-- | scripts/initial-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/initial-setup.sh b/scripts/initial-setup.sh index 511e70c..18a2028 100644 --- a/scripts/initial-setup.sh +++ b/scripts/initial-setup.sh @@ -7,7 +7,7 @@ IS_CONF=/etc/sysconfig/initial-setup [ -f $IS_CONF ] && . $IS_CONF # check if we should run firstboot -if [ -f $IS_EXEC ] && [ "${RUN_INITAL_SETUP,,}" = "yes" ]; then +if [ -f $IS_EXEC ] && [ "${RUN_INITIAL_SETUP,,}" = "yes" ]; then # check if we're not on 3270 terminal and root if [ $(/sbin/consoletype) = "pty" ] && [ $EUID -eq 0 ]; then args="" |