From 55e4db942914d4ccd6884ba59ac8d3790065c7a8 Mon Sep 17 00:00:00 2001 From: Indrajit Raychaudhuri Date: Sat, 11 Oct 2014 23:27:04 +0530 Subject: [PATCH] Enable 'acls', 'xattrs' support in rsync whenever available rsync has support for these available in most cases and isn't specific to Mac OS X any more. Signed-off-by: Sorin Ionescu --- modules/rsync/init.zsh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/rsync/init.zsh b/modules/rsync/init.zsh index e3d3a82..3afebdb 100644 --- a/modules/rsync/init.zsh +++ b/modules/rsync/init.zsh @@ -16,10 +16,14 @@ fi _rsync_cmd='rsync --verbose --progress --human-readable --compress --archive --hard-links --one-file-system' +if grep -q 'xattrs' <(rsync --help 2>&1); then + _rsync_cmd="${_rsync_cmd} --acls --xattrs" +fi + # Mac OS X and HFS+ Enhancements # http://help.bombich.com/kb/overview/credits#opensource if [[ "$OSTYPE" == darwin* ]] && grep -q 'file-flags' <(rsync --help 2>&1); then - _rsync_cmd="${_rsync_cmd} --crtimes --acls --xattrs --fileflags --protect-decmpfs --force-change" + _rsync_cmd="${_rsync_cmd} --crtimes --fileflags --protect-decmpfs --force-change" fi alias rsync-copy="${_rsync_cmd}"