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/