bugfix in sysexec_chroot_noerr, path not passed along
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 31 Dec 2018 12:19:45 +0000 (13:19 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 31 Dec 2018 12:19:45 +0000 (13:19 +0100)
source/utils.py

index 8f8b0bd..76d2d47 100644 (file)
@@ -213,7 +213,7 @@ def sysexec_chroot_noerr(path, cmd, log=None, shell=False):
     """
     try:
         rc = 0
-        rc = sysexec_chroot(cmd, log, shell=shell)
+        rc = sysexec_chroot(path, cmd, log, shell=shell)
     except BootManagerException as e:
         pass