summaryrefslogtreecommitdiff
path: root/doc/examples/configure-index
blob: eb0a242c5466d9044c59e1c4b93336458841bc17 (plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/* This file is an index of all APT configuration directives.
   Instead of actual values the option has the type as value.
   Additional explanations and possible values might be detailed in a comment.

   Most of the options have sane default values,
   unless you have specific needs you should NOT include arbitrary
   items in a custom configuration.

   In some instances involving filenames it is possible to set the default
   directory when the path is evaluated. This means you can use relative
   paths within the sub scope.

   The configuration directives are specified in a tree with {} designating
   a subscope relative to the tag before the {}. You can further specify
   a subscope using scope notation e.g.,
     APT::Architecture "i386";
   This is prefixed with the current scope. Scope notation must be used
   if an option is specified on the command line with -o.

   The most complex type is perhaps <LIST>:
      APT::Architectures "<LIST>";
   In configuration files it usually appears as a subscope of its own like:
      APT::Architectures { "amd64"; "i386"; };
   but the same can be achieved with (needed for commandline)
      APT::Architectures "amd64,i386";
   which overrides the values in the scope notation.

   See apt.conf manpage for a detailed description of many common options
   and the syntax of configuration files and commandline options!
*/

quiet "<INT>";
quiet::NoUpdate "<BOOL>"; // never update progress information - included in -q=1
quiet::NoProgress "<BOOL>"; // disables the 0% → 100% progress on cache generation and stuff
quiet::NoStatistic "<BOOL>"; // no "42 kB downloaded" stats in update

// Options for APT in general
APT
{
  Architecture "<STRING>"; // debian architecture like amd64, i386, powerpc, armhf, mips, …
  Architectures "<LIST>"; // a list of (foreign) debian architectures, defaults to: dpkg --print-foreign-architectures

  Build-Essential "<LIST>"; // list of package names
  Build-Profiles "<STRING_OR_LIST>";

  NeverAutoRemove "<LIST>";  // list of package name regexes

  // Options for apt-get
  Get
  {
     // build-dep options:
     Host-Architecture "<STRING>"; // debian architecture
     Arch-Only "<BOOL>";
     Indep-Only "<BOOL>";
     Build-Dep-Automatic "<BOOL>";

     // (non-)confirming options
     Force-Yes "<BOOL>"; // allows downgrades, essential removal and eats children
     Allow-Downgrades "<BOOL>";
     Allow-Change-Held-Packages "<BOOL>";
     Allow-Remove-Essential "<BOOL>";
     Assume-Yes "<BOOL>"; // not as dangerous, but use with care still
     Assume-No "<BOOL>";
     Trivial-Only "<BOOL>";
     Remove "<BOOL>";
     AllowUnauthenticated "<BOOL>"; // skip security

     AutomaticRemove "<BOOL>";
     HideAutoRemove "<STRING_OR_BOOL>"; // yes, no, small

     Simulate "<BOOL>";
     Show-User-Simulation-Note "<BOOL>";
     Fix-Broken "<BOOL>";
     Fix-Policy-Broken "<BOOL>";

     Download "<BOOL>";
     Download-Only "<BOOL>";
     Fix-Missing "<BOOL>";
     Print-URIs "<BOOL>";
     List-Cleanup "<BOOL>";

     Show-Upgraded "<BOOL>";
     Show-Versions "<BOOL>";
     Upgrade "<BOOL>";
     Only-Upgrade "<BOOL>";
     Upgrade-Allow-New "<BOOL>";
     Purge "<BOOL>";
     ReInstall "<BOOL>";
     Compile "<BOOL>";
     Only-Source "<BOOL>";
     Diff-Only "<BOOL>";
     Tar-Only "<BOOL>";
     Dsc-Only "<BOOL>";

     Autosolving "<BOOL>";
     CallResolver "<BOOL>";
     IndexTargets::ReleaseInfo "<BOOL>";
     IndexTargets::format "<STRING>";
  };

  Cache
  {
     AllNames "<BOOL>";
     AllVersions "<BOOL>";
     Only-Source "<BOOL>";
     GivenOnly "<BOOL>";
     RecurseDepends "<BOOL>";
     Installed "<BOOL>";
     Important "<BOOL>";
     ShowDependencyType "<BOOL>";
     ShowVersion "<BOOL>";
     ShowPre-Depends "<BOOL>";
     ShowDepends "<BOOL>";
     ShowRecommends "<BOOL>";
     ShowSuggests "<BOOL>";
     ShowReplaces "<BOOL>";
     ShowConflicts "<BOOL>";
     ShowBreaks "<BOOL>";
     ShowEnhances "<BOOL>";
     ShowOnlyFirstOr "<BOOL>";
     ShowImplicit "<BOOL>";
     ShowVirtuals "<BOOL>";
     ShowFull "<BOOL>";
     NamesOnly "<BOOL>";

     show::version "<INT>";
     search::version "<INT>";
  };

  CDROM
  {
     Rename "<BOOL>";
     NoMount "<BOOL>";
     Fast "<BOOL>";
     NoAct "<BOOL>";
     Thorough "<BOOL>";
     DropTranslation "<BOOL>";
  };

  Update
  {
     Pre-Invoke {"touch /var/lib/apt/pre-update-stamp"; };
     Post-Invoke {"touch /var/lib/apt/post-update-stamp"; };
  };

  /* define a new supported compressor on the fly
  Compressor::rev {
     Name "rev";
     Extension ".reversed";
     Binary "rev";
     CompressArg {};
     UncompressArg {};
     Cost "10";
  };
  */
  Compressor "<LIST>";
  Compressor::** "<UNDEFINED>";

  Authentication
  {
     TrustCDROM "false"; // consider the CD-ROM always trusted
  };

  Clean-Installed "<BOOL>";

  // Some general options
  Default-Release "<STRING>";
  Ignore-Hold "<BOOL>";
  Immediate-Configure "<BOOL>";
  Immediate-Configure-All "<BOOL>";
  Force-LoopBreak "<BOOL>";

  Cache-Start "<INT>";
  Cache-Grow "<INT>";
  Cache-Limit "<INT>";
  Cache-Fallback "<BOOL>";
  Cache-HashTableSize "<INT>";

  // consider Recommends/Suggests as important dependencies that should
  // be installed by default
  Install-Recommends "<BOOL>";
  Install-Suggests "<BOOL>";
  // reverse Recommends or Suggests prevent autoremoval
  AutoRemove::RecommendsImportant "<BOOL>";
  AutoRemove::SuggestsImportant "<BOOL>";

  // consider dependencies of packages in this section manual
  Never-MarkAuto-Sections {"metapackages"; "universe/metapackages"; };

  // Write progress messages on this fd (for stuff like base-config)
  Status-Fd "<INT>";
  Status-deb822-Fd "<INT>";
  // Keep the list of FDs open (normally apt closes all fds when it
  // does a ExecFork)
  Keep-Fds {};

  // control parameters for cron jobs by /etc/cron.daily/apt documented there
  Periodic {};
};

// Options for the downloading routines
Acquire
{
  Queue-Mode "<STRING>";       // host or access
  Retries "<INT>";
  Source-Symlinks "<BOOL>";
  ForceHash "<STRING>"; // hashmethod used for expected hash: sha256, sha1 or md5sum

  PDiffs "<BOOL>"; // try to get the IndexFile diffs
  PDiffs::FileLimit "<INT>"; // don't use diffs if we would need more than 4 diffs
  PDiffs::SizeLimit "<INT>"; // don't use diffs if size of all patches excess X% of the size of the original file
  PDiffs::Merge "<BOOL>";

  Check-Valid-Until "<BOOL>";
  Max-ValidTime "<INT>"; // time in seconds
  Max-ValidTime::* "<INT>"; // repository label specific configuration
  Min-ValidTime "<INT>"; // time in seconds
  Min-ValidTime::* "<INT>"; // repository label specific configuration

  SameMirrorForAllIndexes "<BOOL>"; // use the mirror serving the Release file for Packages & co

  // HTTP method configuration
  http
  {
    Proxy "http://127.0.0.1:3128";
    Proxy::http.us.debian.org "DIRECT";  // Specific per-host setting
    Timeout "120";
    Pipeline-Depth "5";
    AllowRedirect  "true";

    // Cache Control. Note these do not work with Squid 2.0.2
    No-Cache "false";
    Max-Age "86400";     // 1 Day age on index files
    No-Store "false";    // Prevent the cache from storing archives
    Dl-Limit "<INT>"; // Kb/sec maximum download rate
    User-Agent "Debian APT-HTTP/1.3";
  };

  // HTTPS method configuration: uses the http
  // - proxy config
  // - cache-control values
  // - Dl-Limit, Timeout, ... values
  // if not set explicit for https
  //
  // see /usr/share/doc/apt/examples/apt-https-method-example.conf.gz
  // for more examples
  https
  {
	Verify-Peer "false";
	SslCert "/etc/apt/some.pem";
	CaPath  "/etc/ssl/certs";
	Verify-Host "true";
	AllowRedirect  "true";

	Timeout "120";
	AllowRedirect  "true";

	// Cache Control. Note these do not work with Squid 2.0.2
	No-Cache "false";
	Max-Age "86400";     // 1 Day age on index files
	No-Store "false";    // Prevent the cache from storing archives
	Dl-Limit "<INT>"; // Kb/sec maximum download rate

	User-Agent "Debian APT-CURL/1.0";
  };

  ftp
  {
    Proxy "ftp://127.0.0.1/";
    Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting

    /* Required script to perform proxy login. This example should work
       for tisfwtk */
    ProxyLogin
    {
       "USER $(PROXY_USER)";
       "PASS $(PROXY_PASS)";
       "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
       "PASS $(SITE_PASS)";
    };
    
    Timeout "120";
    
    /* Passive mode control, proxy, non-proxy and per-host. Pasv mode
       is preferred if possible */
    Passive "true";
    Proxy::Passive "true";
    Passive::http.us.debian.org "true"; // Specific per-host setting
  };
  
  cdrom
  {
    AutoDetect "<BOOL>"; // do auto detection of the cdrom mountpoint
    // when auto-detecting, only look for cdrom/dvd. when this is false
    // it will support any removable device as a "cdrom" source
    CdromOnly "true";
    
    // cdrom mountpoint (needs to be defined in fstab if AutoDetect is not used)
    mount "/cdrom";

    // You need the trailing slash!
    "/cdrom/"
    {
       Mount "sleep 1000";
       UMount "sleep 500";
    }
  };

  gpgv
  {
   Options {"--ignore-time-conflict";}	// not very useful on a normal system
  };

  /* CompressionTypes
  {
    bz2 "bzip2";
    lzma "lzma";
    gz "gzip";

    Order { "uncompressed"; "gz"; "lzma"; "bz2"; };
  }; */
  CompressionTypes::Order "<LIST>";
  CompressionTypes::* "<STRING>";

  Languages "<LIST>"; // "environment,de,en,none,fr";

  // Location of the changelogs with the placeholder @CHANGEPATH@ (e.g. "main/a/apt/apt_1.1")
  Changelogs::URI
  {
    // Origin::Debian "http://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog";
    Origin::* "<STRING>";
    Label::* "<STRING>";
    Override::Origin::* "<STRING>";
    Override::Label::* "<STRING>";
  };
  Changelogs::AlwaysOnline "<BOOL>"; // even if the changelog file exists get it online (as the file is incomplete)
  Changelogs::AlwaysOnline::Origin::* "<BOOL>";
};

// Directory layout
Dir "<DIR>"
{
  Ignore-Files-Silently "<LIST>"; // of regexes: "\.dpkg-[a-z]+$,\.bak$,~$";

  // Location of the state dir
  State "<DIR>"
  {
     Lists "<DIR>";
     status "<FILE>";
     extended_states "<FILE>";
     cdroms "<FILE>";
  };

  // Location of the cache dir
  Cache "<DIR>" {
     Archives "<DIR>";
     Backup "backup/"; // backup directory created by /etc/cron.daily/apt
     srcpkgcache "<FILE>";
     pkgcache "<FILE>";
  };

  // Config files
  Etc "<DIR>" {
     Main "<FILE>";
     Netrc "<FILE>";
     Parts "<DIR>";
     Preferences "<FILE>";
     PreferencesParts "<DIR>";
     SourceList "<FILE>";
     SourceParts "<DIR>";
     Trusted "<FILE>";
     TrustedParts "<DIR>";
  };

  // Locations of binaries
  Bin {
     methods "<DIR>";
     methods::* "<FILE>";
     gpg  "/usr/bin/gpgv";
     dpkg "<PROGRAM_PATH>";
     dpkg-source "<PROGRAM_PATH>";
     dpkg-buildpackage "/usr/bin/dpkg-buildpackage";
     lz4 "<PROGRAM_PATH>";
     gzip "<PROGRAM_PATH>";
     xz "<PROGRAM_PATH>";
     bzip2 "<PROGRAM_PATH>";
     lzma "<PROGRAM_PATH>";
     uncompressed "<PROGRAM_PATH>";

     solvers "<LIST>"; // of directories
     planners "<LIST>"; // of directories
  };

  // Location of the logfiles
  Log "<DIR>" {
     Terminal "<FILE>";
     History "<FILE>";
     Solver "<FILE>";
     Planner "<FILE>";
  };

  Media
  {
     MountPath "/media/apt"; // Media AutoDetect mount path
  };
};

// Things that effect the APT dselect method
DSelect
{
   Clean "auto";   // always|auto|prompt|never
   Options "-f";
   UpdateOptions "";
   PromptAfterUpdate "no";
   CheckDir "no";
}

DPkg
{
   NoTriggers "<BOOL>";
   ConfigurePending "<BOOL>";
   TriggersPending "<BOOL>";

   // Probably don't want to use force-downgrade..
   Options {"--force-overwrite";"--force-downgrade";}

   // Auto re-mounting of a readonly /usr
   Pre-Invoke {"mount -o remount,rw /usr";};
   Post-Invoke {"mount -o remount,ro /usr";};

   Chroot-Directory "/";

   // Prevents daemons from getting cwd as something mountable (default)
   Run-Directory "/";

   // Build options for apt-get source --compile
   Build-Options "-b -uc";

   // Pre-configure all packages before they are installed using debconf.
   Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";};

   // Flush the contents of stdin before forking dpkg.
   FlushSTDIN "true";

   MaxArgBytes "<INT>"; // Control the size of the command line passed to dpkg.
   Install::Recursive "<BOOL>" // avoid long commandlines by recursive install in a tmpdir
   {
      force "<BOOL>"; // not all dpkg versions support this, so autodetection is default
      minimum "<INT>"; // don't bother if its just a few packages
      numbered "<BOOL>"; // avoid M-A:same ordering bug in dpkg
   };

   UseIONice "<BOOL>";

   // controls if apt will apport on the first dpkg error or if it 
   // tries to install as many packages as possible
   StopOnError "true";
}

/* Options you can set to see some debugging text They correspond to names
   of classes in the source code */
Debug 
{
  pkgInitConfig "<BOOL>";
  pkgProblemResolver "<BOOL>";
  pkgProblemResolver::ShowScores "<BOOL>";
  pkgDepCache::AutoInstall "<BOOL>"; // what packages apt installs to satisfy dependencies
  pkgDepCache::Marker "<BOOL>";
  pkgCacheGen "<BOOL>";
  pkgAcquire "<BOOL>";
  pkgAcquire::Worker "<BOOL>";
  pkgAcquire::Auth "<BOOL>";
  pkgAcquire::Diffs "<BOOL>";
  pkgDPkgPM "<BOOL>";
  pkgDPkgProgressReporting "<BOOL>";
  pkgOrderList "<BOOL>";
  pkgPackageManager "<BOOL>"; // OrderList/Configure debugging
  pkgAutoRemove "<BOOL>";   // show information about automatic removes
  BuildDeps "<BOOL>";
  pkgInitialize "<BOOL>";   // This one will dump the configuration space
  NoLocking "<BOOL>";
  Acquire::Ftp "<BOOL>";    // Show ftp command traffic
  Acquire::Http "<BOOL>";   // Show http command traffic
  Acquire::Https "<BOOL>";   // Show https debug
  Acquire::gpgv "<BOOL>";   // Show the gpgv traffic
  Acquire::cdrom "<BOOL>";   // Show cdrom debug output
  Acquire::Transaction "<BOOL>";
  Acquire::Progress "<BOOL>";
  aptcdrom "<BOOL>";        // Show found package files
  IdentCdrom "<BOOL>";
  acquire::netrc "<BOOL>";  // netrc parser
  RunScripts "<BOOL>";      // debug invocation of external scripts
  pkgPolicy "<BOOL>";
  GetListOfFilesInDir "<BOOL>";
  pkgAcqArchive::NoQueue "<BOOL>";
  Hashes "<BOOL>";
  APT::FtpArchive::Clean "<BOOL>";
  NoDropPrivs "<BOOL>";
  EDSP::WriteSolution "<BOOL>";
  InstallProgress::Fancy "<BOOL>";
  APT::Progress::PackageManagerFd "<BOOL>";
};

pkgCacheGen
{
  Essential "<STRING>"; // native,all, none, installed
  ForceEssential "<STRING_OR_LIST>"; // package names
  ForceImportant "<LIST>"; // package names
};

// modify points awarded for various facts about packages while
// resolving conflicts in the dependency resolution process
pkgProblemResolver::Scores
{
  Required "<INT>";
  Important "<INT>";
  Standard "<INT>";
  Optional "<INT>";
  Extra "<INT>";
  Essentials "<INT>";
  NotObsolete "<INT>";
  Depends "<INT>";
  PreDepends "<INT>";
  Suggests "<INT>";
  Recommends "<INT>";
  Conflicts "<INT>";
  Replaces "<INT>";
  Obsoletes "<INT>";
  Breaks "<INT>";
  Enhances "<INT>";
  AddProtected "<INT>";
  AddEssential "<INT>";
};
pkgProblemResolver::FixByInstall "<BOOL>";

APT::FTPArchive::release
{
   Default-Patterns "<BOOL>";
   NumericTimezone "<BOOL>";

   // set specific fields in the generated Release file
   Acquire-By-Hash "<BOOL>";
   ButAutomaticUpgrades "<BOOL>";
   NotAutomatic "<BOOL>";
   MD5 "<BOOL>";
   SHA1 "<BOOL>";
   SHA256 "<BOOL>";
   SHA512 "<BOOL>";
   Architectures "<STRING>";
   Codename "<STRING>";
   Components "<STRING>";
   Date "<STRING>";
   Description "<STRING>";
   Label "<STRING>";
   Origin "<STRING>";
   Signed-by "<STRING>";
   Suite "<STRING>";
   Version "<STRING>";
};

// having both seems wrong
dpkgpm::progress "<BOOL>";
dpkg::progress "<BOOL>";
apt::acquire::by-hash "<STRING>";
acquire::by-hash "<STRING>";
apt::acquire::*::by-hash "<STRING>";
acquire::*::by-hash "<STRING>";

// Unsorted options: Some of those are used only internally

help "<BOOL>"; // true if the help message was requested via e.g. --help
version "<BOOL>"; // true if the version number was requested via e.g. --version
Binary "<STRING>"; // name of the program run like apt-get, apt-cache, …

dir::locale "<DIR>";
dir::bin::dpkg-source "<STRING>";

pkgcachefile::generate "<BOOL>";
packagemanager::unpackall "<BOOL>";
packagemanager::configure "<STRING>";
commandline::asstring "<STRING>";
edsp::scenario "<STRING>";
eipp::scenario "<STRING>";
cd::* "<STRING>"; // added CDRoms are stored as config

orderlist::score::delete "<INT>";
orderlist::score::essential "<INT>";
orderlist::score::immediate "<INT>";
orderlist::score::predepends "<INT>";

apt::sources::with "<LIST>";
apt::moo::color "<BOOL>";
apt::pkgpackagemanager::maxloopcount "<INT>";
apt::hashes::*::untrusted "<BOOL>";
apt::list-cleanup "<BOOL>";
apt::authentication::trustcdrom "<BOOL>";
apt::solver::strict-pinning "<BOOL>";
apt::keep-downloaded-packages "<BOOL>";
apt::solver "<STRING>";
apt::planner "<STRING>";
apt::system "<STRING>";
apt::acquire::translation "<STRING>"; // deprecated in favor of Acquire::Languages
apt::sandbox::user "<STRING>";
apt::color::highlight "<STRING>";
apt::color::neutral "<STRING>";

dpkgpm::reporting-steps "<INT>";

dpkg::chroot-directory "<DIR>";
dpkg::tools::options::** "<UNDEFINED>";
dpkg::source-options "<STRING>";
dpkg::progress-fancy "<BOOL>";
dpkg::selection::remove::approved "<BOOL>";
dpkg::remove::crossgrade::implicit "<BOOL>";
dpkg::selection::current::saveandrestore "<BOOL>";
dpkg::use-pty "<BOOL>";

apt::cmd::disable-script-warning "<BOOL>";
apt::cmd::show-update-stats "<BOOL>";
apt::cmd::use-format "<BOOL>";
apt::cmd::manual-installed "<BOOL>";
apt::cmd::upgradable "<BOOL>";
apt::cmd::installed "<BOOL>";
apt::cmd::list-include-summary "<BOOL>";
apt::cmd::use-regexp "<BOOL>";
apt::cmd::all-versions "<BOOL>";
apt::cmd::format "<STRING>";

apt::config::dump::emptyvalue "<BOOL>";
apt::config::dump::format "<STRING>";

apt::mark::simulate "<BOOL>";
apt::markauto::verbose "<BOOL>";
apt::sortpkgs::source "<BOOL>";
apt::extracttemplates::tempdir "<STRING>";

apt::key::archivekeyring "<STRING>";
apt::key::removedkeys "<STRING>";
apt::key::gpgvcommand "<STRING>";
apt::key::gpgcommand "<STRING>";
apt::key::masterkeyring "<STRING>";
apt::key::archivekeyringuri "<STRING>";
apt::key::net-update-enabled "<STRING>";

apt::ftparchive::release::patterns "<LIST>";
apt::ftparchive::release::validtime "<INT>";
apt::ftparchive::by-hash-keep "<INT>";
apt::ftparchive::delinkact "<BOOL>";
apt::ftparchive::md5 "<BOOL>";
apt::ftparchive::sha1 "<BOOL>";
apt::ftparchive::sha256 "<BOOL>";
apt::ftparchive::sha512 "<BOOL>";
apt::ftparchive::dobyhash "<BOOL>";
apt::ftparchive::showcachemisses "<BOOL>";
apt::ftparchive::sources::md5 "<BOOL>";
apt::ftparchive::sources::sha1 "<BOOL>";
apt::ftparchive::sources::sha256 "<BOOL>";
apt::ftparchive::sources::sha512 "<BOOL>";
apt::ftparchive::packages::md5 "<BOOL>";
apt::ftparchive::packages::sha1 "<BOOL>";
apt::ftparchive::packages::sha256 "<BOOL>";
apt::ftparchive::packages::sha512 "<BOOL>";
apt::ftparchive::dobyhash "<BOOL>";
apt::ftparchive::readonlydb "<BOOL>";
apt::ftparchive::nooverridemsg "<BOOL>";
apt::ftparchive::alwaysstat "<BOOL>";
apt::ftparchive::contents "<BOOL>";
apt::ftparchive::contentsonly "<BOOL>";
apt::ftparchive::longdescription "<BOOL>";
apt::ftparchive::includearchitectureall "<BOOL>";
apt::ftparchive::architecture "<STRING>";
apt::ftparchive::db "<STRING>";
apt::ftparchive::sourceoverride "<STRING>";

apt-helper::cat-file::compress "<STRING>";

acquire::cdrom::mount "<DIR>";
acquire::maxreleasefilesize "<INT>";
acquire::queuehost::limit "<INT>";
acquire::max-pipeline-depth "<INT>";
acquire::allowinsecurerepositories "<BOOL>";
acquire::allowweakrepositories "<BOOL>";
acquire::allowdowngradetoinsecurerepositories "<BOOL>";
acquire::progress::diffpercent "<BOOL>";
acquire::gzipindexes "<BOOL>";
acquire::indextargets::randomized "<BOOL>";
acquire::indextargets::deb::** "<UNDEFINED>";
acquire::indextargets::deb-src::** "<UNDEFINED>";
acquire::progress::ignore::showerrortext "<BOOL>";
acquire::*::dl-limit "<INT>"; // catches file: and co which do not have these
methods::mirror::problemreporting "<STRING>";
acquire::http::proxyautodetect "<STRING>";
acquire::http::proxy-auto-detect "<STRING>";
acquire::http::proxy::* "<STRING>";
acquire::https::proxyautodetect "<STRING>";
acquire::https::proxy-auto-detect "<STRING>";
acquire::https::proxy::* "<STRING>";

// Options used by apt-ftparchive
dir::archivedir "<DIR>";
dir::cachedir "<DIR>";
dir::overridedir "<DIR>";
filemode "<INT>";
longdescription "<BOOL>";
external-links "<BOOL>";
default::contentsage "<INT>";
default::maxcontentschange "<INT>";
default::filemode "<INT>";
default::longdescription "<BOOL>";
default::translation::compress "<STRING>";
default::contents::compress "<STRING>";
default::sources::compress "<STRING>";
default::packages::compress "<STRING>";
default::sources::extensions "<STRING>";
default::packages::extensions "<STRING>";
treedefault::directory "<STRING>";
treedefault::srcdirectory "<STRING>";
treedefault::packages "<STRING>";
treedefault::translation "<STRING>";
treedefault::internalprefix "<STRING>";
treedefault::contents "<STRING>";
treedefault::contents::header "<STRING>";
treedefault::bincachedb "<STRING>";
treedefault::srccachedb "<STRING>";
treedefault::sources "<STRING>";
treedefault::filelist "<STRING>";
treedefault::sourcefilelist "<STRING>";
sections "<STRING>";
architectures "<STRING>";
binoverride "<STRING>";
internalprefix "<STRING>";
bincachedb "<STRING>";
directory "<STRING>";
packages "<STRING>";
translation "<STRING>";
contents "<STRING>";
filelist "<STRING>";
extraoverride "<STRING>";
pathprefix "<STRING>";
srcdirectory "<STRING>";
sources "<STRING>";
sourcefilelist "<STRING>";
srcextraoverride "<STRING>";
srccachedb "<STRING>";
srcoverride "<STRING>";
contents::header "<STRING>";
packages::compress "<STRING>";
sources::compress "<STRING>";
contents::compress "<STRING>";
translation::compress "<STRING>";
sources::extensions "<STRING>";
packages::extensions "<STRING>";
dir::filelistdir "<STRING>";

// Internal code.
dir::dpkg::tupletable "<FILE>";
dir::dpkg::triplettable "<FILE>";
dir::dpkg::cputable "<FILE>";