[BACK]Return to chmod.test CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests / nfs4acl

File: [Development] / xfs-cmds / xfstests / nfs4acl / chmod.test (download)

Revision 1.1, Fri Sep 5 06:18:15 2008 UTC (9 years, 1 month ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD

Check in Andreas Gruenbacher's nfs v4 acl tests into the xfstests suite.
Merge of master-melb:xfs-cmds:32058a by kenmcd.

  Add in AG's nfs4acl tests.

$ 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