After creating a zfs, altering the properties aclmode or aclinherit, ends up with the following message: "property 'aclmode' not supported on FreeBSD: permission denied" But aclmode/aclinherit can be set during _creation_ of the ZFS with the help of zfs create -o aclmode=passthrough foo How-To-Repeat: $ zfs create foo $ zfs set aclmode=passthrough foo property 'aclmode' not supported on FreeBSD: permission denied
Responsible Changed From-To: freebsd-bugs->freebsd-fs Over to maintainer(s).
This works with ZFS v28: # zfs set aclmode=groupmask tank # zfs get aclmode tank # zfs create tank/foo # zfs get aclmode tank/foo NAME PROPERTY VALUE SOURCE tank/foo aclmode groupmask inherited from tank # zfs set aclmode=passthrough tank/foo # zfs get aclmode tank/foo NAME PROPERTY VALUE SOURCE tank/foo aclmode passthrough local Please try upgrade to 9.0; you may need to upgrade your zpool via 'zpool upgrade -a' (highly unlikely though). HTH, -Garrett
If you need this property, you have to upgrade to one of the following: 8-STABLE revision 224564 (Aug 01, 2011) or newer 9-STABLE HEAD revision 224174 (Jul 18, 2011) or newer FreeBSD 9.0 and 8.3 will have ZFS v28 and support this property. -- Martin Matuska FreeBSD committer http://blog.vx.sk
Hi, Am 09.10.2011 21:30, schrieb Garrett Cooper: > This works with ZFS v28: > well, then this can be closed. I wonder why nobody cared for this one in the meantime. with kind regards, Robert Schulze
State Changed From-To: open->closed Closed on submitter request. Thanks!