All HowTo's

Include ACLs with Rsync

Rsync will not include ACLs by default. However, increasingly ACLs are in use and required to control access to the filesystem. Neglecting ACLs in the copy process will likely cause security problems.

rsync -avz /source/* /destination/

To include ACL’s, use the following:

rsync -aAvz /source/* /destination/

Leave a Reply

Your email address will not be published. Required fields are marked *