1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Debian GNU/Linux release of `mirror'
#
# Based on the `mirror.defaults' files shipped with mirror-2.8 and 2.9 and
# adapted to the Debian GNU/Linux settings.
#
# Written by Dirk Eddelbuettel <edd@debian.org>
#
# See the documentation in /usr/doc/mirror for a detailed description.
package=defaults
#
# save some bandwidth and exclude files matching the following pattern
exclude_patt=(^|/)(\.mirror$|\.mirror\.log|core$|\.cap|\.in\..*\.$|MIRROR\.LOG|#.*#|\.FSP|\.cache|\.zipped|\.notar|\.message|lost\+found/|Network Trash Folder)|suky.mpe?g
#
# don't compress file that don't benefit from compression
compress_excl+|-z(\d+)?$|\.tgz|_tgz|\.tar\.Z|\.tar\.gz|\.taz$|\.arc$|\.zip$|\.lzh$|\.zoo$|\.exe$|\.lha$|\.zom$|\.gif$|\.jpeg$|\.jpg$|\.mpeg$|\.au$|\.shk$|rpm$|deb$|read.*me|index|info|faq|gzip|compress|(^|/)\.\.?$
#
# compress using 'gzip'
compress_prog=gzip
#
# don't delete these
delete_excl=(^|/)\.(mirror|notar|cache)$
#
# delete old files
do_deletes=true
max_delete_files=100%
max_delete_dirs=100%
#
# more restrictive umask while transferring
umask=07022
#
# don't try to convert .Z files
compress_conv_patt=
|