We can't call isPackageInstalled after the transaction has been run, since it wants to operate on a TransactionSet object and that's been deleted. So instead we need to call it sometime between populateTs and _run. This looks to be as good a place as any. --- yuminstall.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/yuminstall.py b/yuminstall.py index 6f8a8a4..71f1154 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1064,6 +1064,8 @@ class AnacondaYum(YumSorter): self.ts.check() self.ts.order() + self.anaconda.id.bootloader.trusted_boot = self.isPackageInstalled(name="tboot") + if self._run(instLog, cb, intf) == DISPATCH_BACK: self.tsInfo.curmedia = None return DISPATCH_BACK @@ -1854,8 +1856,6 @@ debuglevel=6 anaconda.id.instProgress = None - anaconda.id.bootloader.trusted_boot = self.ayum.isPackageInstalled(name="tboot") - if rc == DISPATCH_BACK: return DISPATCH_BACK -- 1.7.6 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list