svn commit: r246819 - stable/9/bin/setfacl

Edward Tomasz Napierala trasz at FreeBSD.org
Fri Feb 15 06:52:57 UTC 2013


Author: trasz
Date: Fri Feb 15 06:52:56 2013
New Revision: 246819
URL: http://svnweb.freebsd.org/changeset/base/246819

Log:
  MFC r246557:
  
  In the setfacl(1) manual page, make it clear that for NFSv4 ACLs,
  one should really use -a and -x instead of -m.
  
  MFC r246558:
  
  Improve description of the "-m" option to setfacl(1).
  
  MFC r246559:
  
  Fix NFSv4 permission description in setfacl(1) manual page: the 'D'
  means delete_child, not delete.

Modified:
  stable/9/bin/setfacl/setfacl.1
Directory Properties:
  stable/9/bin/setfacl/   (props changed)

Modified: stable/9/bin/setfacl/setfacl.1
==============================================================================
--- stable/9/bin/setfacl/setfacl.1	Fri Feb 15 02:07:05 2013	(r246818)
+++ stable/9/bin/setfacl/setfacl.1	Fri Feb 15 06:52:56 2013	(r246819)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd September 2, 2012
+.Dd February 8, 2013
 .Dt SETFACL 1
 .Os
 .Sh NAME
@@ -91,10 +91,16 @@ An error will be reported if any of
 the specified files cannot have a default entry (i.e.\&
 non-directories).  This option is not applicable to NFSv4 ACLs.
 .It Fl m Ar entries
-Modify the ACL entries on the specified files by adding new
-entries and modifying existing ACL entries with the ACL entries
-specified in
-.Ar entries .
+Modify the ACL on the specified file.
+New entries will be added, and existing entries will be modified
+according to the
+.Ar entries
+argument.
+For NFSv4 ACLs, it is recommended to use the
+.Fl a
+and
+.Fl x
+options instead.
 .It Fl M Ar file
 Modify the ACL entries on the specified files by adding new
 ACL entries and modifying existing ACL entries with the ACL
@@ -319,9 +325,9 @@ write_data
 execute
 .It p
 append_data
-.It d
-delete_child
 .It D
+delete_child
+.It d
 delete
 .It a
 read_attributes


More information about the svn-src-all mailing list