> anaconda | 5 +++-- > 1 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/anaconda b/anaconda > index 8f67807..d88f029 100755 > --- a/anaconda > +++ b/anaconda > @@ -366,11 +366,12 @@ def runVNC(): > break > > while True: > - # s390/s390x are the only places we /really/ need a shell on tty1, > + # Not having a virtual terminal or otherwise free console > + # are the only places we /really/ need a shell on tty1, > # and everywhere else this just gets in the way of pdb. But we > # don't want to return, because that'll return try to start X > # a second time. > - if iutil.isConsoleOnVirtualTerminal(): > + if iutil.isConsoleOnVirtualTerminal() or iutil.isS390(): > time.sleep(10000) > else: > print _("Press <enter> for a shell") Peter is working on getting rid of the need for this entire block by having a better pdb setup, so for now I'm going to NAK this. If he can't get through the maze of process control and i/o redirection, we may have to come back and revisit this. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list