Fix tar call.

This commit is contained in:
parazyd 2020-06-22 12:38:54 +02:00
parent 9afec40475
commit b6f57c3894
No known key found for this signature in database
GPG Key ID: 6B636BF0493EE747
1 changed files with 2 additions and 2 deletions

View File

@ -161,13 +161,13 @@ bootstrap_tar_pack() {
pushd ${strapdir}
mkdir -p ${_dest}
silly
sudo tar czfp "$bootstrap_tgz" . \
sudo tar czfp "$bootstrap_tgz" \
--acls \
--selinux \
--xattrs \
--xattrs-include=security.capability \
--xattrs-include=user.pax.flags \
--exclude={./dev,./sys,./proc} || zerr
--exclude={./dev,./sys,./proc} . || zerr
popd
fi
}