> diff --git a/backend.py b/backend.py > index 2ec2109..6fd4698 100644 > --- a/backend.py > +++ b/backend.py > @@ -60,7 +60,13 @@ class AnacondaBackend: > self._loopbackFile = None > > def postAction(self, anaconda): > - pass > + # Remove /mnt/sysimage/mnt/sysimage tree > + try: > + path = "/mnt/sysimage/mnt/sysimage" > + shutil.rmtree(path) > + log.info("Removed directory tree: %s" % path) > + except Exception, e: > + log.error("Unable to remove directory tree: %s %s" % (path, e)) > > def doPreSelection(self, intf, id, instPath): > pass I should have looked more closely at the original bug report. Why are we creating /mnt/sysimage/mnt/sysimage in the first place? - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list