add comment on how to determine if rsyncable option is available
This commit is contained in:
parent
094f219506
commit
a2a0a9215b
1 changed files with 3 additions and 1 deletions
|
@ -207,7 +207,9 @@ The resulting file will then be `dump_gitlab_backup.tar`. This is useful for sys
|
||||||
|
|
||||||
### Rsyncable
|
### Rsyncable
|
||||||
|
|
||||||
To make sure the generated archive is intelligently transferable by rsync, the `GZIP_RSYNCABLE=yes` option can be set. This will set the `--rsyncable` option to `gzip`. This is only useful in combination with setting [the Backup filename option](#backup-filename). Note that this option in `gzip` is not guaranteed to be available on all distributions.
|
To make sure the generated archive is intelligently transferable by rsync, the `GZIP_RSYNCABLE=yes` option can be set. This will set the `--rsyncable` option to `gzip`. This is only useful in combination with setting [the Backup filename option](#backup-filename).
|
||||||
|
|
||||||
|
Note that the `--rsyncable` option in `gzip` is not guaranteed to be available on all distributions. To verify that it is available in your distribution you can run `gzip --help` or consult the man pages.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo gitlab-rake gitlab:backup:create BACKUP=dump GZIP_RSYNCABLE=yes
|
sudo gitlab-rake gitlab:backup:create BACKUP=dump GZIP_RSYNCABLE=yes
|
||||||
|
|
Loading…
Reference in a new issue