apache-sync-logs: Use rsync -a since we don't need all those options after all
[hcoop/scripts.git] / apache-sync-logs
index 602efbc..b0e007b 100755 (executable)
@@ -34,7 +34,7 @@ for A in $(find $LOCAL_LOG_DIR/user -mindepth 3 -maxdepth 3 -print); do
         echo "Error: $LOG_DEST does not exist, please make it"
     else
         k5start -qtU -f $KEYTAB_DIR/$USER \
-            -- su $USER -c "rsync -rlptOgoD $A/apache/log/ $LOG_DEST/"
+            -- su $USER -c "rsync -a $A/apache/log/ $LOG_DEST/"
         [ "$VERBOSE" = "true" ] && echo "  done."
     fi
 done