diff options
author | intrigeri <intrigeri@boum.org> | 2009-11-19 20:27:46 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2009-11-19 20:27:46 +0100 |
commit | f9672647177f771270f40a858fb94283ff1ebcdf (patch) | |
tree | ed5401118f00344405409144825ecd919ba29214 /handlers/ldap.in | |
parent | 75d17d06f276ad1aa435d7dc31777677b10917b4 (diff) | |
download | backupninja-f9672647177f771270f40a858fb94283ff1ebcdf.tar.gz backupninja-f9672647177f771270f40a858fb94283ff1ebcdf.tar.bz2 |
ldap, mysql, pgsql: use gzip's --rsyncable option
Diffstat (limited to 'handlers/ldap.in')
-rw-r--r-- | handlers/ldap.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/ldap.in b/handlers/ldap.in index 5f402c7..853cefb 100644 --- a/handlers/ldap.in +++ b/handlers/ldap.in @@ -86,7 +86,7 @@ if [ "$ldif" == "yes" ]; then fi if [ "$compress" == "yes" ]; then - execstr="$execstr | $GZIP > $dumpdir/$dbsuffix.ldif.gz" + execstr="$execstr | $GZIP --rsyncable > $dumpdir/$dbsuffix.ldif.gz" else execstr="$execstr > $dumpdir/$dbsuffix.ldif" fi |