
This reverts commit 2614e5fa95aab680fb6f9287831e50c65f76f72c. The repository is actually maintained, the authors merely misunderstood the stackforge namespace retirement maintenance announcements[1] and didn't realize they needed to notify us of that status. Reverting the repository to its former state in preparation for a namespace move in a coming project rename maintenance. [1] http://lists.openstack.org/pipermail/openstack-infra/2015-August/003119.html Change-Id: I6ccdcd8f8a084711c265e42c77b3b4159af27b24
80 lines
1.6 KiB
Plaintext
80 lines
1.6 KiB
Plaintext
# Default config for debmirror
|
|
|
|
# The config file is a perl script so take care to follow perl syntax.
|
|
# Any setting in /etc/debmirror.conf overrides these defaults and
|
|
# ~/.debmirror.conf overrides those again. Take only what you need.
|
|
#
|
|
# The syntax is the same as on the command line and variable names
|
|
# loosely match option names. If you don't recognize something here
|
|
# then just stick to the command line.
|
|
#
|
|
# Options specified on the command line override settings in the config
|
|
# files.
|
|
|
|
# Location of the local mirror (use with care)
|
|
# $mirrordir="/path/to/mirrordir"
|
|
|
|
# Output options
|
|
$verbose=0;
|
|
$progress=0;
|
|
$debug=0;
|
|
|
|
# Download options
|
|
$host="ftp.debian.org";
|
|
$user="anonymous";
|
|
$passwd="anonymous@";
|
|
$remoteroot="debian";
|
|
$download_method="ftp";
|
|
# @dists="sid";
|
|
@sections="main,main/debian-installer,contrib,non-free";
|
|
# @arches="i386";
|
|
# @ignores="";
|
|
# @excludes="";
|
|
# @includes="";
|
|
# @excludes_deb_section="";
|
|
# @limit_priority="";
|
|
$omit_suite_symlinks=0;
|
|
$skippackages=0;
|
|
# @rsync_extra="doc,tools";
|
|
$i18n=0;
|
|
$getcontents=0;
|
|
$do_source=1;
|
|
$max_batch=0;
|
|
|
|
# @di_dists="dists";
|
|
# @di_archs="arches";
|
|
|
|
# Save mirror state between runs; value sets validity of cache in days
|
|
$state_cache_days=0;
|
|
|
|
# Security/Sanity options
|
|
$ignore_release_gpg=0;
|
|
$ignore_release=0;
|
|
$check_md5sums=0;
|
|
$ignore_small_errors=0;
|
|
|
|
# Cleanup
|
|
$cleanup=0;
|
|
$post_cleanup=1;
|
|
|
|
# Locking options
|
|
$timeout=300;
|
|
|
|
# Rsync options
|
|
$rsync_batch=200;
|
|
$rsync_options="-aIL --partial";
|
|
|
|
# FTP/HTTP options
|
|
$passive=0;
|
|
# $proxy="http://proxy:port/";
|
|
|
|
# Dry run
|
|
$dry_run=0;
|
|
|
|
# Don't keep diff files but use them
|
|
$diff_mode="use";
|
|
|
|
# The config file must return true or perl complains.
|
|
# Always copy this.
|
|
1;
|