diff options
| -rw-r--r-- | handlers/rsync.in | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/handlers/rsync.in b/handlers/rsync.in index 5d8c777..f925a20 100644 --- a/handlers/rsync.in +++ b/handlers/rsync.in @@ -277,9 +277,7 @@ function eval_config {      mv=move_files    fi -  for path in $exclude; do -    excludes="$excludes --exclude=$path" -  done +  excludes=`echo "$exclude" | @SED@ "s/^/--exclude='/g" -e "s/ /' --exclude='/g" -e "s/$/'/"`  } @@ -1132,8 +1130,8 @@ for SECTION in $include; do    set_dest    info "Syncing $SECTION on $dest_path..." -  debug $nice $rsync "${rsync_options[@]}" $filelist_flag $excludes $batch_option $orig $dest_path -  $nice $rsync "${rsync_options[@]}" $filelist_flag $excludes $batch_option $orig $dest_path | tee -a $log +  debug $nice $rsync "${rsync_options[@]}" $filelist_flag "$excludes" $batch_option $orig $dest_path +  $nice $rsync "${rsync_options[@]}" $filelist_flag "$excludes" $batch_option $orig $dest_path | tee -a $log    if [ "$?" != "0" ]; then      fatal "Rsync error when trying to transfer $SECTION" | 
