acl.rst
changeset 1958 154fce7a0648
parent 1912 8b81a8f0f692
child 1959 669ef988764d
--- a/acl.rst	Thu May 19 17:21:18 2016 +0300
+++ b/acl.rst	Fri May 20 10:57:56 2016 +0300
@@ -40,7 +40,11 @@
   $ sudo setfacl -m -d u:nobody:rwx /srv/www
   $ sudo setfacl -m u:nobody:rwx /srv/www
 
+To apply permission recursively add ``-R`` option::
+
+  $ sudo setfacl -R -m -d u:nobody:rwx /srv/www
+  $ sudo setfacl -R -m u:nobody:rwx /srv/www
+
 .. NOTE:: default ACL is set only on directories and is applied only to
           directory children. So you should explicitly add permission to
           directory itself!
-