diff --git a/src/pylorax/installtree.py b/src/pylorax/installtree.py index 650eabca..7575cf22 100644 --- a/src/pylorax/installtree.py +++ b/src/pylorax/installtree.py @@ -521,7 +521,7 @@ class LoraxInstallTree(BaseLoraxClass): find = subprocess.Popen([self.lcmds.FIND, "."], stdout=subprocess.PIPE, preexec_fn=chdir) - cpio = subprocess.Popen([self.lcmds.CPIO, "--quiet", "-c", "-o"], + cpio = subprocess.Popen([self.lcmds.CPIO, "--quiet", "-H", "newc", "-o"], stdin=find.stdout, stdout=subprocess.PIPE, preexec_fn=chdir)