From 0090512c0e15881d67f270b0c2ba60e16a7ef944 Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Tue, 26 Jan 2016 17:34:49 -0500 Subject: [PATCH] Disable xattrs in IPA extraction The CoreOS IPA image appears to be failing upon extraction of the IPA container due to a failure to applicaiton of xattr values. Manually testing with-in the CoreOS image reveals that adding --no-attrs to the command line allows tar to complete successfully. Change-Id: I9b2bf6ff47822bc46259e2bbb27bd575889786a3 Closes-Bug: #1538310 --- imagebuild/coreos/oem/cloud-config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagebuild/coreos/oem/cloud-config.yml b/imagebuild/coreos/oem/cloud-config.yml index 7e5164c1f..f94efd801 100644 --- a/imagebuild/coreos/oem/cloud-config.yml +++ b/imagebuild/coreos/oem/cloud-config.yml @@ -39,7 +39,7 @@ coreos: Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/mkdir -p /opt/ironic-python-agent - ExecStart=/usr/bin/tar -x \ + ExecStart=/usr/bin/tar -x --no-xattrs \ -C /opt/ironic-python-agent \ -f /usr/share/oem/container.tar.gz