Skip to content

Commit

Permalink
Merge pull request #311 from viraniac/master
Browse files Browse the repository at this point in the history
Fix missing capabilities resulting into ping not working for unprivileged users
  • Loading branch information
numbqq authored Jul 24, 2024
2 parents 2c91bdd + 54053db commit 74902b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/functions/build-rootfs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ create_rootfs_cache()
if [[ $cache_sha256 == $calc_sha256 ]]; then
info_msg "Extracting $display_name $date_diff days old"
# may be no need progress at all its very fast
lz4 -dc < $cache_fname | tar xp --xattrs -C $ROOTFS_TEMP/
lz4 -dc < $cache_fname | tar xp --xattrs-include='*' -C $ROOTFS_TEMP/
qemu_helper "$ROOTFS_TEMP"
return
else
Expand Down

0 comments on commit 74902b8

Please sign in to comment.