Changes between Version 16 and Version 17 of Mirroring


Ignore:
Timestamp:
Jul 23, 2016, 5:28:02 PM (8 years ago)
Author:
larryv (Lawrence Velázquez)
Comment:

put each table cell on its own line (the first column is about to get much wider)

Legend:

Unmodified
Added
Removed
Modified
  • Mirroring

    v16 v17  
    4949There is a sample script below for mirroring these modules via rsync. You don't have to use that script if you already have other arrangements for syncing, but please use the following `rsync` flags, for the following reasons:
    5050
    51 ||=`rsync` flag        =||=Purpose
    52 || `--compress`, `-z`   || File data is compressed during transfer. The server won't re-compress files that are already compressed.
    53 || `--delete-delay`     || Files which were removed on the server are removed from the mirror after the transfer is finished. This option is similar to but more efficient than `--delete-after`.
    54 || `--hard-links`, `-H` || Hard links are preserved.
    55 || `--links`, `-l`      || Symbolic links (symlinks) are preserved.
    56 || `--perms`, `-p`      || File and directory permissions are preserved.
    57 || `--recursive`, `-r`  || Directories are copied recursively.
    58 || `--timeout=600`      || If no data is transferred for 10 minutes, the connection is dropped.
    59 || `--times`, `-t`      || Modification times are preserved.
     51||=`rsync` flag =|| \
     52||=Purpose
     53|| `--compress`, `-z` || \
     54|| File data is compressed during transfer. The server won't re-compress files that are already compressed.
     55|| `--delete-delay` || \
     56|| Files which were removed on the server are removed from the mirror after the transfer is finished. This option is similar to but more efficient than `--delete-after`.
     57|| `--hard-links`, `-H` || \
     58|| Hard links are preserved.
     59|| `--links`, `-l` || \
     60|| Symbolic links (symlinks) are preserved.
     61|| `--perms`, `-p` || \
     62|| File and directory permissions are preserved.
     63|| `--recursive`, `-r` || \
     64|| Directories are copied recursively.
     65|| `--timeout=600` || \
     66|| If no data is transferred for 10 minutes, the connection is dropped.
     67|| `--times`, `-t` || \
     68|| Modification times are preserved.
    6069
    6170== Stay up to date