[zfs-discuss] zfs allow does not work for rpool

2010-07-28 Thread Mike DeMarco
I am trying to give a general user permissions to create zfs filesystems in the rpool. zpool set=delegation=on rpool zfs allow user create rpool both run without any issues. zfs allow rpool reports the user does have create permissions. zfs create rpool/test cannot create rpool/test :

Re: [zfs-discuss] zfs allow does not work for rpool

2010-07-28 Thread Cindy Swearingen
Hi Mark, A couple of things are causing this to fail: 1. The user needs permissions to the underlying mount point. 2. The user needs both create and mount permissions to create ZFS datasets. See the syntax below, which might vary depending on your Solaris release. Thanks, Cindy # chmod

Re: [zfs-discuss] zfs allow does not work for rpool

2010-07-28 Thread Mike DeMarco
Thanks adding mount did allow me to create it but does not allow me to create the mountpoint. -- This message posted from opensolaris.org ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] zfs allow does not work for rpool

2010-07-28 Thread Cindy Swearingen
Mike, Did you also give the user permissions to the underlying mount point: # chmod A+user:user-name:add_subdirectory:fd:allow /rpool If so, please let me see the syntax and error messages. Thanks, Cindy On 07/28/10 12:23, Mike DeMarco wrote: Thanks adding mount did allow me to create it