~ubuntu-branches/ubuntu/raring/debmirror/raring-updates

« back to all changes in this revision

Viewing changes to debmirror.conf

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2010-04-05 12:38:24 UTC
  • mfrom: (2.1.15 sid)
  • Revision ID: james.westby@ubuntu.com-20100405123824-ohfbuu5pz18zgrzk
Tags: 1:2.4.4ubuntu1
* Merge from debian unstable (LP: #555967).  Remaining changes:
  - debian/{control,rules}: add quilt for patch management.
  - Debian bug 455082:
    - default-settings.patch: change rsync defaults.
    - silence-errors.patch: throw away find errors.
    - functionalize.patch: prepare for batching of non-deb files.
    - drop-redundant-rsync.patch: clean up logic in rsync batching.
    - check_file-return.patch: report why a file needs to sync.
    - command-exit-checking.patch: check exit codes of commands.
  - skip-installer.patch: allow specific releases to be skipped (Debian
    bug 576576).
  - rsync-retries.patch: retry if rsync batch fails connection (Debian
    bug 576577).
* Dropped rsync Release file batching for now, as it makes merging
  much more difficult.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Default config for debmirror
2
 
 
3
 
# The config file is a perl script so take care to follow perl syntax.
4
 
# Any setting in /etc/debmirror.conf overrides these defaults and
5
 
# ~/.debmirror.conf overrides those again. Take only what you need.
6
 
#
7
 
# The syntax is the same as on the command line and variable names
8
 
# loosely match option names. If you don't recognize something here
9
 
# then just stick to the command line.
10
 
 
11
 
 
12
 
# Output options
13
 
$verbose=0;
14
 
$progress=0;
15
 
$debug=0;
16
 
 
17
 
# Download options
18
 
$host="ftp.debian.org";
19
 
$user="anonymous";
20
 
$passwd="anonymous@";
21
 
$remoteroot="/debian";
22
 
$download_method="ftp";
23
 
@dists="sid";
24
 
@sections="main,main/debian-installer,contrib,non-free";
25
 
@arches="i386";
26
 
# @extra_dirs="";
27
 
# @ignores="";
28
 
# @excludes="";
29
 
# @includes="";
30
 
# @excludes_deb_section="";
31
 
# @limit_priority="";
32
 
$skippackages=0;
33
 
$getcontents=0;
34
 
$do_source=1;
35
 
$max_batch=0;
36
 
 
37
 
# Security/Sanity options
38
 
$ignore_release_gpg=0;
39
 
$ignore_release=0;
40
 
$check_md5sums=0;
41
 
$ignore_small_errors=0;
42
 
 
43
 
# Cleanup
44
 
$cleanup=0;
45
 
$post_cleanup=1;
46
 
 
47
 
# Locking options
48
 
$timeout=300;
49
 
 
50
 
# Rsync options
51
 
$rsync_batch=200;
52
 
$rsync_options="-aIL --partial";
53
 
 
54
 
# FTP/HTTP options
55
 
$passive=0;
56
 
# $proxy="http://proxy:port/";
57
 
 
58
 
# Dry run
59
 
$dry_run=0;
60
 
 
61
 
# Don't keep pdiff files but use them
62
 
$pdiff_mode="use";
63
 
 
64
 
# The config file must return true or perl complains.
65
 
# Always copy this.
66
 
1;