Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 891231 Details for
Bug 1092763
text install with liveimg kickstart crashes
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch
0001-Skip-source-and-software-spoke-in-text-live-installa.patch (text/plain), 2.45 KB, created by
Brian Lane
on 2014-04-30 16:40:41 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Brian Lane
Created:
2014-04-30 16:40:41 UTC
Size:
2.45 KB
patch
obsolete
>From e2d977b6daabd6ad66978ae1b37c29f530025c0b Mon Sep 17 00:00:00 2001 >From: "Brian C. Lane" <bcl@redhat.com> >Date: Tue, 29 Apr 2014 16:39:33 -0700 >Subject: [RHEL7/master] Skip source and software spoke in text live installations > (#1092763) > >text liveimg kickstart installations were failing because it was trying >to show the software and source spokes. This copies the showable logic >over from the GUI spokes and skips them for live and liveimg kickstart >installations. > >Resolves: rhbz#1092763 > >-- NOTE that on master these checks are class based. >--- > pyanaconda/ui/tui/hubs/__init__.py | 4 ++-- > pyanaconda/ui/tui/spokes/software.py | 4 ++++ > pyanaconda/ui/tui/spokes/source.py | 4 ++++ > 3 files changed, 10 insertions(+), 2 deletions(-) > >diff --git a/pyanaconda/ui/tui/hubs/__init__.py b/pyanaconda/ui/tui/hubs/__init__.py >index b637f94..55a67d8 100644 >--- a/pyanaconda/ui/tui/hubs/__init__.py >+++ b/pyanaconda/ui/tui/hubs/__init__.py >@@ -61,13 +61,13 @@ class TUIHub(TUIObject, common.Hub): > continue > > spoke = s(self.app, self.data, self.storage, self.payload, self.instclass) >- spoke.initialize() > > if not spoke.showable: >- spoke.teardown() > del spoke > continue > >+ spoke.initialize() >+ > if spoke.indirect: > continue > >diff --git a/pyanaconda/ui/tui/spokes/software.py b/pyanaconda/ui/tui/spokes/software.py >index dc337e1..44f3da3 100644 >--- a/pyanaconda/ui/tui/spokes/software.py >+++ b/pyanaconda/ui/tui/spokes/software.py >@@ -72,6 +72,10 @@ class SoftwareSpoke(NormalTUISpoke): > self._ready = True > > @property >+ def showable(self): >+ return not flags.livecdInstall and not self.data.method.method == "liveimg" >+ >+ @property > def status(self): > """ Where we are in the process """ > if self.errors: >diff --git a/pyanaconda/ui/tui/spokes/source.py b/pyanaconda/ui/tui/spokes/source.py >index 3afe01b..fc889c6 100644 >--- a/pyanaconda/ui/tui/spokes/source.py >+++ b/pyanaconda/ui/tui/spokes/source.py >@@ -203,6 +203,10 @@ class SourceSpoke(SourceSwitchHandler, EditTUISpoke): > return _("Nothing selected") > > @property >+ def showable(self): >+ return not flags.livecdInstall and not self.data.method.method == "liveimg" >+ >+ @property > def status(self): > if self.errors: > return _("Error setting up software source") >-- >1.9.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1092763
: 891231