[master/rhel7-branch/f21] Fix a typo from 73d3a8e5. (#1040933)

Samantha N. Bueno sbueno+anaconda at redhat.com
Mon Oct 13 12:59:45 UTC 2014


If a user is running in cmdline mode, _don't_ prompt for ssh.

Resolves: rhbz#1040933
---
 anaconda | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/anaconda b/anaconda
index db532d9..d82d1e8 100755
--- a/anaconda
+++ b/anaconda
@@ -793,7 +793,7 @@ if __name__ == "__main__":
     # see if we're on s390x and if we've got an ssh connection
     uname = os.uname()
     if uname[4] == 's390x':
-        if 'TMUX' not in os.environ and flags.ksprompt and not flags.imageInstall:
+        if 'TMUX' not in os.environ and not flags.ksprompt and not flags.imageInstall:
             prompt_for_ssh()
             sys.exit(0)
 
-- 
1.9.3



More information about the anaconda-patches mailing list