> diff --git a/storage/__init__.py b/storage/__init__.py > index e37f9e9..6a02c13 100644 > --- a/storage/__init__.py > +++ b/storage/__init__.py > @@ -105,6 +105,11 @@ def storageInitialize(anaconda): > "could not be found. Please check your " > "parameters and try again.") % devspec, > type="custom", custom_buttons = [_("_Exit installer")]) > + # vtActivate() might fail on certain ppc64 machines > + try: > + isys.vtActivate(1) > + except SystemError: > + pass > sys.exit(1) > else: > storage.reset() I'm okay with this fix, but why are we running into this problem now? Is it new or has it always been happening and we just haven't noticed? If it's new, what's the deal? - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list