Merge pull request 'ALBS-226: Patch pungi/lorax for building AL9' (#1) from ALBS-226 into rhel9-branch

Reviewed-on: #1
This commit is contained in:
Stepan Oksanichenko 2022-03-21 15:52:53 +00:00
commit f821a94ec4
1 changed files with 3 additions and 3 deletions

View File

@ -498,12 +498,12 @@ class DracutChroot(object):
return self
def __exit__(self, exc_type, exc_value, tracebk):
runcmd(["umount", self.root + "/proc" ])
runcmd(["umount", self.root + "/dev" ])
umount(self.root + '/proc')
umount(self.root + '/dev')
# cleanup bind mounts
for _, d in self.bind:
runcmd(["umount", self.root + d ])
umount(self.root + d)
def Run(self, args):
runcmd(["dracut"] + args, root=self.root)