This file is indexed.

/etc/debarchiver.conf is in debarchiver 0.11.0.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
# This is a sample configuration file.
# 
# The configuration file consist of perl variables that can be set to
# different values. The suggested value in this sample configuration file
# is the default value set by debarchiver.

# $destdir = "/var/lib/debarchiver/dists";
# $inputdir = "/var/lib/debarchiver/incoming";
# $copycmd = "cp -af";
# $movecmd = "mv";
# $rmcmd = "rm -f";
# @vrfycmd = ("dscverify");
# $cinstall = "installed";
# $distinputcriteria = "^linux.*\\.deb\$";

# Choose to enable or disable signature verification for packages uploaded
# into $inputdir (not %distinputdirs).
# $verifysignatures = 0;

# Force install of changes files even if some files already exists with
# wrong size or md5 hash.
# $ignoredestcheck = 0;

# Choose to enable or disable signature verification for packages uploaded
# into %distinputdirs. This works indepentently from $verifysignatures.
# $verifysignaturesdistinput = 0;

# Generate bzip2 files or not (1 will generate and 0 will not do so).
# $bzip = 0;

# Time to allow .changes files to be incomplete in seconds. Allow this time
# for slow uploads.
# Defaults to 24 hours.
# $incompletetime = 24*60*60;

# This one is used for debarchives that matches distinput criteria.
# %distinputdirs =
# 	(
# 	'stable' => 'stable',
#	'testing' => 'testing',
# 	'unstable' => 'unstable'
#	);

# What distributions that should exist.
# @distributions = ('stable', 'testing', 'unstable');

# Default major section to install to, if not defined in the uploaded files.
# $majordefault = "main";

# Mapping of aliases.
# OBS! If you create a mapping that will only be created if you have
#  added the key to @distributions above. If you want the symlink to be created
#  in a proper way you MUST add them at the same time. Else you will have
#  two directories that are independent (and not mapped).
# %distmapping =
# 	(
#	'stable' => 'lenny',
#	'testing' => 'squeeze',
#	'unstable' => 'sid'
#	);

# What architectures that should exist (automatically created).
# All and source will exist anyway.
# @architectures = ('i386');

# What sections that should exist.
# @sections = ('main', 'contrib', 'non-free');

# What changes file fields that should be used for determine where to send
# mail. If there is an '@' character is found here it will be used directly
# without consulting the .changes-file. Default is to mail no one. If there
# is an '@' character in the beginning, the user owning the file will be
# prepended. For the case when a deb file is sorted without a changes file,
# then only explicit mail address or @domain.com address will get the mail.
# @mailtos = ('Maintainer',          The Maintainer field in control file
#	      'Uploaders',           The Uploaders field in control file
#             '@bar.com',            User id @bar.com that own the deb or
#                                    changes file
#             'installer@foo.com',   An explicit email address
#             'Changed-By');         The email in the changelog file

# Specify the sender of emails.
# Default to none.
# $mailfrom = "";

# If you want additional information in the generated Release files you have
# to set this hash-value.  Supported keys are origin, label, and description.

# %release = (	'origin' => "",
#		'label' => "",
#		'description' => "");

# Where to put the apt-ftparchive cache files if --index is used.  Default
# is /var/cache/debarchiver.  Must be a directory.
# $cachedir = '/var/cache/debarchiver';

# GnuPG key to use to sign the archive.
# $gpgkey = "";

# File to provide password to GnuPG.
# If you use a key with an empty passphrase, set this variable to 0 or "".
# If the file does not exist, debarchiver will also fall back to "".
# $gpgpassfile = "$ENV{HOME}/.gnupg/passphrase";

# The configuraton file need to return a true value.
1;