# Submitted by: Jason D. Hildebrand  (2011-01-06 20:24)
#
# When the initial backup (all.1.tar.gz) is re-created (for me about 
# 20G) the transfer takes several days. If backup2l could create the
# tar.gz files using gzip's --rsyncable option, then this would speed 
# things up substantially.

# simple wrapper around the existing DRIVER_TAR_GZ using --rsyncable
DRIVER_TAR_GZ_RSYNCABLE ()
{
    export GZIP="--rsyncable"
    DRIVER_TAR_GZ "$@"
}
