From 23d7324fc37f338022c6ac2dae0fd119884a1aea Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 25 Feb 2010 10:15:25 -0500 Subject: doReIPL should return when going back through steps, too (#563862). Without this change, going backwards from package installation errors will bounce at the reipl step and go forwards again without giving you a chance to do anything about it. The result is arbitrary errors about setting up authentication because no packages were installed. --- packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.py b/packages.py index ffe1cb6e6..ed9ed354c 100644 --- a/packages.py +++ b/packages.py @@ -345,7 +345,7 @@ def doReIPL(anaconda): # import pdb # pdb.set_trace () - if not iutil.isS390(): + if not iutil.isS390() or anaconda.dir == DISPATCH_BACK: return DISPATCH_NOOP messageInfo = iutil.reIPL(anaconda, os.getppid()) -- cgit