mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
841b609ec9
Merge of master-melb:xfs-cmds:32058a by kenmcd. Run all the tests in xfstests/nfs4acl
32 lines
566 B
Plaintext
32 lines
566 B
Plaintext
$ mkdir d
|
|
$ cd d
|
|
|
|
$ whoami
|
|
> root
|
|
|
|
$ touch a
|
|
|
|
Neet to have write_acl permission to chmod or set the acl:
|
|
$ su bin
|
|
$ chmod 666 a
|
|
> chmod: changing permissions of `a': Operation not permitted
|
|
$ nfs4acl --set 'bin:rwM::allow' a
|
|
> a: Operation not permitted
|
|
|
|
$ su
|
|
$ nfs4acl --set 'bin:rwm::allow' a
|
|
|
|
Can set the acl now:
|
|
$ su bin
|
|
$ nfs4acl --set 'bin:rwm::allow' a
|
|
|
|
A chmod limits the permissions to the specified mode, which always disables
|
|
write_acl:
|
|
$ chmod 666 a
|
|
$ nfs4acl --set 'bin:rwm::allow' a
|
|
> a: Operation not permitted
|
|
|
|
$ su
|
|
$ cd ..
|
|
$ rm -rf d
|