diff --git a/PVE/Storage/ZFSPoolPlugin.pm b/PVE/Storage/ZFSPoolPlugin.pm index edc5cc8..bf8dca0 100644 --- a/PVE/Storage/ZFSPoolPlugin.pm +++ b/PVE/Storage/ZFSPoolPlugin.pm @@ -315,7 +315,8 @@ sub zfs_create_subvol { my $dataset = "$scfg->{pool}/$volname"; - my $cmd = ['create', '-o', "refquota=${size}k", $dataset]; + my $cmd = ['create', '-o', 'acltype=posixacl', '-o', 'xattr=sa', + '-o', "refquota=${size}k", $dataset]; $class->zfs_request($scfg, undef, @$cmd); }