/* 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 : APT::Architectures ""; 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 ""; quiet::NoUpdate ""; // never update progress information - included in -q=1 quiet::NoProgress ""; // disables the 0% → 100% progress on cache generation and stuff quiet::NoStatistic ""; // no "42 kB downloaded" stats in update // Options for APT in general APT { Architecture ""; // debian architecture like amd64, i386, powerpc, armhf, mips, … Architectures ""; // a list of (foreign) debian architectures, defaults to: dpkg --print-foreign-architectures Build-Essential ""; // list of package names Build-Profiles ""; NeverAutoRemove ""; // list of package name regexes // Options for apt-get Get { // build-dep options: Host-Architecture ""; // debian architecture Arch-Only ""; Indep-Only ""; Build-Dep-Automatic ""; // (non-)confirming options Force-Yes ""; // allows downgrades, essential removal and eats children Allow-Downgrades ""; Allow-Change-Held-Packages ""; Allow-Remove-Essential ""; Assume-Yes ""; // not as dangerous, but use with care still Assume-No ""; Trivial-Only ""; Remove ""; AllowUnauthenticated ""; // skip security AutomaticRemove ""; HideAutoRemove ""; // yes, no, small Simulate ""; Show-User-Simulation-Note ""; Fix-Broken ""; Fix-Policy-Broken ""; Download ""; Download-Only ""; Fix-Missing ""; Print-URIs ""; List-Cleanup ""; Show-Upgraded ""; Show-Versions ""; Upgrade ""; Only-Upgrade ""; Upgrade-Allow-New ""; Purge ""; ReInstall ""; Compile ""; Only-Source ""; Diff-Only ""; Tar-Only ""; Dsc-Only ""; Autosolving ""; CallResolver ""; IndexTargets::ReleaseInfo ""; IndexTargets::format ""; }; Cache { AllNames ""; AllVersions ""; Only-Source ""; GivenOnly ""; RecurseDepends ""; Installed ""; Important ""; ShowDependencyType ""; ShowVersion ""; ShowPre-Depends ""; ShowDepends ""; ShowRecommends ""; ShowSuggests ""; ShowReplaces ""; ShowConflicts ""; ShowBreaks ""; ShowEnhances ""; ShowOnlyFirstOr ""; ShowImplicit ""; ShowVirtuals ""; ShowFull ""; NamesOnly ""; show::version ""; search::version ""; }; CDROM { Rename ""; NoMount ""; Fast ""; NoAct ""; Thorough ""; DropTranslation ""; }; 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 ""; Compressor::** ""; Authentication { TrustCDROM "false"; // consider the CD-ROM always trusted }; Clean-Installed ""; // Some general options Default-Release ""; Ignore-Hold ""; Immediate-Configure ""; Immediate-Configure-All ""; Force-LoopBreak ""; Cache-Start ""; Cache-Grow ""; Cache-Limit ""; Cache-Fallback ""; Cache-HashTableSize ""; // consider Recommends/Suggests as important dependencies that should // be installed by default Install-Recommends ""; Install-Suggests ""; // reverse Recommends or Suggests prevent autoremoval AutoRemove::RecommendsImportant ""; AutoRemove::SuggestsImportant ""; // 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 ""; Status-deb822-Fd ""; // 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 ""; // host or access Retries ""; Source-Symlinks ""; ForceHash ""; // hashmethod used for expected hash: sha256, sha1 or md5sum PDiffs ""; // try to get the IndexFile diffs PDiffs::FileLimit ""; // don't use diffs if we would need more than 4 diffs PDiffs::SizeLimit ""; // don't use diffs if size of all patches excess X% of the size of the original file PDiffs::Merge ""; Check-Valid-Until ""; Max-ValidTime ""; // time in seconds Max-ValidTime::* ""; // repository label specific configuration Min-ValidTime ""; // time in seconds Min-ValidTime::* ""; // repository label specific configuration SameMirrorForAllIndexes ""; // 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 ""; // 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 ""; // 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 ""; // 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 ""; CompressionTypes::* ""; Languages ""; // "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::* ""; Label::* ""; Override::Origin::* ""; Override::Label::* ""; }; Changelogs::AlwaysOnline ""; // even if the changelog file exists get it online (as the file is incomplete) Changelogs::AlwaysOnline::Origin::* ""; }; // Directory layout Dir "" { Ignore-Files-Silently ""; // of regexes: "\.dpkg-[a-z]+$,\.bak$,~$"; // Location of the state dir State "" { Lists ""; status ""; extended_states ""; cdroms ""; }; // Location of the cache dir Cache "" { Archives ""; Backup "backup/"; // backup directory created by /etc/cron.daily/apt srcpkgcache ""; pkgcache ""; }; // Config files Etc "" { Main ""; Netrc ""; Parts ""; Preferences ""; PreferencesParts ""; SourceList ""; SourceParts ""; Trusted ""; TrustedParts ""; }; // Locations of binaries Bin { methods ""; methods::* ""; gpg "/usr/bin/gpgv"; dpkg ""; dpkg-source ""; dpkg-buildpackage "/usr/bin/dpkg-buildpackage"; lz4 ""; gzip ""; xz ""; bzip2 ""; lzma ""; uncompressed ""; solvers ""; // of directories planners ""; // of directories }; // Location of the logfiles Log "" { Terminal ""; History ""; Solver ""; Planner ""; }; 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 ""; ConfigurePending ""; TriggersPending ""; // 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 ""; // Control the size of the command line passed to dpkg. Install::Recursive "" // avoid long commandlines by recursive install in a tmpdir { force ""; // not all dpkg versions support this, so autodetection is default minimum ""; // don't bother if its just a few packages numbered ""; // avoid M-A:same ordering bug in dpkg }; UseIONice ""; // 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 ""; pkgProblemResolver ""; pkgProblemResolver::ShowScores ""; pkgDepCache::AutoInstall ""; // what packages apt installs to satisfy dependencies pkgDepCache::Marker ""; pkgCacheGen ""; pkgAcquire ""; pkgAcquire::Worker ""; pkgAcquire::Auth ""; pkgAcquire::Diffs ""; pkgDPkgPM ""; pkgDPkgProgressReporting ""; pkgOrderList ""; pkgPackageManager ""; // OrderList/Configure debugging pkgAutoRemove ""; // show information about automatic removes BuildDeps ""; pkgInitialize ""; // This one will dump the configuration space NoLocking ""; Acquire::Ftp ""; // Show ftp command traffic Acquire::Http ""; // Show http command traffic Acquire::Https ""; // Show https debug Acquire::gpgv ""; // Show the gpgv traffic Acquire::cdrom ""; // Show cdrom debug output Acquire::Transaction ""; Acquire::Progress ""; aptcdrom ""; // Show found package files IdentCdrom ""; acquire::netrc ""; // netrc parser RunScripts ""; // debug invocation of external scripts pkgPolicy ""; GetListOfFilesInDir ""; pkgAcqArchive::NoQueue ""; Hashes ""; APT::FtpArchive::Clean ""; NoDropPrivs ""; EDSP::WriteSolution ""; InstallProgress::Fancy ""; APT::Progress::PackageManagerFd ""; }; pkgCacheGen { Essential ""; // native,all, none, installed ForceEssential ""; // package names ForceImportant ""; // package names }; // modify points awarded for various facts about packages while // resolving conflicts in the dependency resolution process pkgProblemResolver::Scores { Required ""; Important ""; Standard ""; Optional ""; Extra ""; Essentials ""; NotObsolete ""; Depends ""; PreDepends ""; Suggests ""; Recommends ""; Conflicts ""; Replaces ""; Obsoletes ""; Breaks ""; Enhances ""; AddProtected ""; AddEssential ""; }; pkgProblemResolver::FixByInstall ""; APT::FTPArchive::release { Default-Patterns ""; NumericTimezone ""; // set specific fields in the generated Release file Acquire-By-Hash ""; ButAutomaticUpgrades ""; NotAutomatic ""; MD5 ""; SHA1 ""; SHA256 ""; SHA512 ""; Architectures ""; Codename ""; Components ""; Date ""; Description ""; Label ""; Origin ""; Signed-by ""; Suite ""; Version ""; }; // having both seems wrong dpkgpm::progress ""; dpkg::progress ""; apt::acquire::by-hash ""; acquire::by-hash ""; apt::acquire::*::by-hash ""; acquire::*::by-hash ""; // Unsorted options: Some of those are used only internally help ""; // true if the help message was requested via e.g. --help version ""; // true if the version number was requested via e.g. --version Binary ""; // name of the program run like apt-get, apt-cache, … dir::locale ""; dir::bin::dpkg-source ""; pkgcachefile::generate ""; packagemanager::unpackall ""; packagemanager::configure ""; commandline::asstring ""; edsp::scenario ""; eipp::scenario ""; cd::* ""; // added CDRoms are stored as config orderlist::score::delete ""; orderlist::score::essential ""; orderlist::score::immediate ""; orderlist::score::predepends ""; apt::sources::with ""; apt::moo::color ""; apt::pkgpackagemanager::maxloopcount ""; apt::hashes::*::untrusted ""; apt::list-cleanup ""; apt::authentication::trustcdrom ""; apt::solver::strict-pinning ""; apt::keep-downloaded-packages ""; apt::solver ""; apt::planner ""; apt::system ""; apt::acquire::translation ""; // deprecated in favor of Acquire::Languages apt::sandbox::user ""; apt::color::highlight ""; apt::color::neutral ""; dpkgpm::reporting-steps ""; dpkg::chroot-directory ""; dpkg::tools::options::** ""; dpkg::source-options ""; dpkg::progress-fancy ""; dpkg::selection::remove::approved ""; dpkg::remove::crossgrade::implicit ""; dpkg::selection::current::saveandrestore ""; dpkg::use-pty ""; apt::cmd::disable-script-warning ""; apt::cmd::show-update-stats ""; apt::cmd::use-format ""; apt::cmd::manual-installed ""; apt::cmd::upgradable ""; apt::cmd::installed ""; apt::cmd::list-include-summary ""; apt::cmd::use-regexp ""; apt::cmd::all-versions ""; apt::cmd::format ""; apt::config::dump::emptyvalue ""; apt::config::dump::format ""; apt::mark::simulate ""; apt::markauto::verbose ""; apt::sortpkgs::source ""; apt::extracttemplates::tempdir ""; apt::key::archivekeyring ""; apt::key::removedkeys ""; apt::key::gpgvcommand ""; apt::key::gpgcommand ""; apt::key::masterkeyring ""; apt::key::archivekeyringuri ""; apt::key::net-update-enabled ""; apt::ftparchive::release::patterns ""; apt::ftparchive::release::validtime ""; apt::ftparchive::by-hash-keep ""; apt::ftparchive::delinkact ""; apt::ftparchive::md5 ""; apt::ftparchive::sha1 ""; apt::ftparchive::sha256 ""; apt::ftparchive::sha512 ""; apt::ftparchive::dobyhash ""; apt::ftparchive::showcachemisses ""; apt::ftparchive::sources::md5 ""; apt::ftparchive::sources::sha1 ""; apt::ftparchive::sources::sha256 ""; apt::ftparchive::sources::sha512 ""; apt::ftparchive::packages::md5 ""; apt::ftparchive::packages::sha1 ""; apt::ftparchive::packages::sha256 ""; apt::ftparchive::packages::sha512 ""; apt::ftparchive::dobyhash ""; apt::ftparchive::readonlydb ""; apt::ftparchive::nooverridemsg ""; apt::ftparchive::alwaysstat ""; apt::ftparchive::contents ""; apt::ftparchive::contentsonly ""; apt::ftparchive::longdescription ""; apt::ftparchive::includearchitectureall ""; apt::ftparchive::architecture ""; apt::ftparchive::db ""; apt::ftparchive::sourceoverride ""; apt-helper::cat-file::compress ""; acquire::cdrom::mount ""; acquire::maxreleasefilesize ""; acquire::queuehost::limit ""; acquire::max-pipeline-depth ""; acquire::allowinsecurerepositories ""; acquire::allowweakrepositories ""; acquire::allowdowngradetoinsecurerepositories ""; acquire::progress::diffpercent ""; acquire::gzipindexes ""; acquire::indextargets::randomized ""; acquire::indextargets::deb::** ""; acquire::indextargets::deb-src::** ""; acquire::progress::ignore::showerrortext ""; acquire::*::dl-limit ""; // catches file: and co which do not have these methods::mirror::problemreporting ""; acquire::http::proxyautodetect ""; acquire::http::proxy-auto-detect ""; acquire::http::proxy::* ""; acquire::https::proxyautodetect ""; acquire::https::proxy-auto-detect ""; acquire::https::proxy::* ""; // Options used by apt-ftparchive dir::archivedir ""; dir::cachedir ""; dir::overridedir ""; filemode ""; longdescription ""; external-links ""; default::contentsage ""; default::maxcontentschange ""; default::filemode ""; default::longdescription ""; default::translation::compress ""; default::contents::compress ""; default::sources::compress ""; default::packages::compress ""; default::sources::extensions ""; default::packages::extensions ""; treedefault::directory ""; treedefault::srcdirectory ""; treedefault::packages ""; treedefault::translation ""; treedefault::internalprefix ""; treedefault::contents ""; treedefault::contents::header ""; treedefault::bincachedb ""; treedefault::srccachedb ""; treedefault::sources ""; treedefault::filelist ""; treedefault::sourcefilelist ""; sections ""; architectures ""; binoverride ""; internalprefix ""; bincachedb ""; directory ""; packages ""; translation ""; contents ""; filelist ""; extraoverride ""; pathprefix ""; srcdirectory ""; sources ""; sourcefilelist ""; srcextraoverride ""; srccachedb ""; srcoverride ""; contents::header ""; packages::compress ""; sources::compress ""; contents::compress ""; translation::compress ""; sources::extensions ""; packages::extensions ""; dir::filelistdir ""; // Internal code. dir::dpkg::tupletable ""; dir::dpkg::triplettable ""; dir::dpkg::cputable "";