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
This commit is contained in:
parent
55239c2199
commit
0090512c0e
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user