You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
closes#22
add tar options for the import of a tarball (create_appliance.py)
fix tar options for the creation of the tarball (export_appliance.py)
=> remove --acls: see
https://intranet.grid5000.fr/bugzilla/show_bug.cgi?id=6386#c21
=> add --xattrs-include='*':
- needed only for tar -x, and require root/sudo
- armless for tar -c
e.g.:
$ tar --xattrs -cvf /tmp/t.tar /bin/ping ; sudo tar --xattrs --xattrs-
include='*' -xvf /tmp/t.tar ; getcap /tmp/bin/ping
tar: Removing leading `/' from member names
/bin/ping
bin/ping
/tmp/bin/ping = cap_net_raw+ep
same as
$ tar --xattrs-include='*' --xattrs -cvf /tmp/t.tar /bin/ping ; sudo tar
--xattrs --xattrs-include='*' -xvf /tmp/t.tar ; getcap /tmp/bin/ping
tar: Removing leading `/' from member names
/bin/ping
bin/ping
/tmp/bin/ping = cap_net_raw+ep
This should be modified steps/data/helpers/create_appliance.py:230
The text was updated successfully, but these errors were encountered: