Bug 1171745
Summary: | Anaconda cycles in x3270 terminal | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Jan Stodola <jstodola> |
Component: | anaconda | Assignee: | Samantha N. Bueno <sbueno> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | high | Docs Contact: | |
Priority: | high | ||
Version: | 21 | CC: | anaconda-maint-list, g.kaviyarasu, jonathan, sbueno, vanmeeuwen+fedora |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | s390x | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2014-12-10 12:50:36 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 467765 |
Description
Jan Stodola
2014-12-08 14:15:49 UTC
Tested on compose http://s390.koji.fedoraproject.org/test/20141125/s390x/os/ Following patch (based on rhel7-brach) fixes this issue: diff --git a/anaconda b/anaconda index 4ec1a12..360d5ad 100755 --- a/anaconda +++ b/anaconda @@ -950,7 +950,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 not flags.ksprompt and not flags.imageInstall: + if 'TMUX' not in os.environ and 'ks' not in flags.cmdline and not flags.imageInstall: prompt_for_ssh() sys.exit(0) Yes, commit 8a823546531177f73a3d6e8dffa7912e32d8afa2. I forgot to cherry-pick it over, so (a) thanks for identifying the exact patch and (b) I'll push it now. anaconda-21.48.22-1.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/anaconda-21.48.22-1.fc21 It's fixed in anaconda-21.48.22-1.fc21. Thanks, closing the bug. |