| 1 | /* This file is an index of all APT configuration directives. It should |
| 2 | NOT actually be used as a real config file, though it is (except for the |
| 3 | last line) a completely valid file. Most of the options have sane default |
| 4 | values, unless you have specific needs you should NOT include arbitrary |
| 5 | items in a custom configuration. |
| 6 | |
| 7 | In some instances involving filenames it is possible to set the default |
| 8 | directory when the path is evaluated. This means you can use relative |
| 9 | paths within the sub scope. |
| 10 | |
| 11 | The configuration directives are specified in a tree with {} designating |
| 12 | a subscope relative to the tag before the {}. You can further specify |
| 13 | a subscope using scope notation eg, |
| 14 | APT::Architecture "i386"; |
| 15 | This is prefixed with the current scope. Scope notation must be used |
| 16 | if an option is specified on the command line with -o. |
| 17 | */ |
| 18 | |
| 19 | quiet "0"; |
| 20 | |
| 21 | // Options for APT in general |
| 22 | APT |
| 23 | { |
| 24 | Architecture "i386"; |
| 25 | Build-Essential "build-essential"; |
| 26 | |
| 27 | NeverAutoRemove { "linux-image.*"; }; // packages that should never |
| 28 | // considered for autoRemove |
| 29 | |
| 30 | // Options for apt-get |
| 31 | Get |
| 32 | { |
| 33 | Arch-Only "false"; |
| 34 | AllowUnauthenticated "false"; |
| 35 | AutomaticRemove "false"; |
| 36 | HideAutoRemove "false"; |
| 37 | Download-Only "false"; |
| 38 | Simulate "false"; |
| 39 | Assume-Yes "false"; |
| 40 | Force-Yes "false"; // I would never set this. |
| 41 | Fix-Broken "false"; |
| 42 | Fix-Missing "false"; |
| 43 | Show-Upgraded "false"; |
| 44 | Show-Versions "false"; |
| 45 | Upgrade "true"; |
| 46 | Print-URIs "false"; |
| 47 | Compile "false"; |
| 48 | Download "true"; |
| 49 | Purge "false"; |
| 50 | List-Cleanup "true"; |
| 51 | ReInstall "false"; |
| 52 | Trivial-Only "false"; |
| 53 | Remove "true"; |
| 54 | Only-Source ""; |
| 55 | Diff-Only "false"; |
| 56 | Tar-Only "false"; |
| 57 | Build-Dep-Automatic "true"; |
| 58 | }; |
| 59 | |
| 60 | Cache |
| 61 | { |
| 62 | Important "false"; |
| 63 | AllVersions "false"; |
| 64 | GivenOnly "false"; |
| 65 | RecurseDepends "false"; |
| 66 | ShowFull "false"; |
| 67 | Generate "true"; |
| 68 | NamesOnly "false"; |
| 69 | AllNames "false"; |
| 70 | Installed "false"; |
| 71 | }; |
| 72 | |
| 73 | CDROM |
| 74 | { |
| 75 | Rename "false"; |
| 76 | NoMount "false"; |
| 77 | Fast "false"; |
| 78 | NoAct "false"; |
| 79 | }; |
| 80 | |
| 81 | Update |
| 82 | { |
| 83 | Pre-Invoke {"touch /var/lib/apt/pre-update-stamp"; }; |
| 84 | Post-Invoke {"touch /var/lib/apt/post-update-stamp"; }; |
| 85 | }; |
| 86 | |
| 87 | Authentication |
| 88 | { |
| 89 | TrustCDROM "false"; // consider the CDROM always trusted |
| 90 | }; |
| 91 | |
| 92 | GPGV |
| 93 | { |
| 94 | TrustedKeyring "/etc/apt/trusted.gpg"; |
| 95 | }; |
| 96 | |
| 97 | // Some general options |
| 98 | Ignore-Hold "false"; |
| 99 | Clean-Installed "true"; |
| 100 | Immediate-Configure "true"; // DO NOT turn this off, see the man page |
| 101 | Force-LoopBreak "false"; // DO NOT turn this on, see the man page |
| 102 | Cache-Limit "4194304"; |
| 103 | Default-Release ""; |
| 104 | |
| 105 | // consider Recommends, Suggests as important dependencies that should |
| 106 | // be installed by default |
| 107 | Install-Recommends "true"; |
| 108 | Install-Suggests "false"; |
| 109 | |
| 110 | // consider dependencies of packages in this section manual |
| 111 | Never-MarkAuto-Sections {"metapackages"; "universe/metapackages"; }; |
| 112 | |
| 113 | // Write progress messages on this fd (for stuff like base-config) |
| 114 | Status-Fd "-1"; |
| 115 | // Keep the list of FDs open (normally apt closes all fds when it |
| 116 | // does a ExecFork) |
| 117 | Keep-Fds {}; |
| 118 | }; |
| 119 | |
| 120 | // Options for the downloading routines |
| 121 | Acquire |
| 122 | { |
| 123 | Queue-Mode "host"; // host|access |
| 124 | Retries "0"; |
| 125 | Source-Symlinks "true"; |
| 126 | |
| 127 | PDiffs "true"; // try to get the IndexFile diffs |
| 128 | |
| 129 | // HTTP method configuration |
| 130 | http |
| 131 | { |
| 132 | Proxy "http://127.0.0.1:3128"; |
| 133 | Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting |
| 134 | Timeout "120"; |
| 135 | Pipeline-Depth "5"; |
| 136 | |
| 137 | // Cache Control. Note these do not work with Squid 2.0.2 |
| 138 | No-Cache "false"; |
| 139 | Max-Age "86400"; // 1 Day age on index files |
| 140 | No-Store "false"; // Prevent the cache from storing archives |
| 141 | Dl-Limit "7"; // 7Kb/sec maximum download rate |
| 142 | }; |
| 143 | |
| 144 | // HTTPS method configuration: |
| 145 | // - uses the http proxy config |
| 146 | // - uses the http cache-control values |
| 147 | // - uses the http Dl-Limit values |
| 148 | https |
| 149 | { |
| 150 | Verify-Peer "false"; |
| 151 | SslCert "/etc/apt/some.pem"; |
| 152 | CaPath "/etc/ssl/certs"; |
| 153 | Verify-Host" "2"; |
| 154 | }; |
| 155 | |
| 156 | ftp |
| 157 | { |
| 158 | Proxy "ftp://127.0.0.1/"; |
| 159 | Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting |
| 160 | |
| 161 | /* Required script to perform proxy login. This example should work |
| 162 | for tisfwtk */ |
| 163 | ProxyLogin |
| 164 | { |
| 165 | "USER $(PROXY_USER)"; |
| 166 | "PASS $(PROXY_PASS)"; |
| 167 | "USER $(SITE_USER)@$(SITE):$(SITE_PORT)"; |
| 168 | "PASS $(SITE_PASS)"; |
| 169 | }; |
| 170 | |
| 171 | Timeout "120"; |
| 172 | |
| 173 | /* Passive mode control, proxy, non-proxy and per-host. Pasv mode |
| 174 | is preferred if possible */ |
| 175 | Passive "true"; |
| 176 | Proxy::Passive "true"; |
| 177 | Passive::http.us.debian.org "true"; // Specific per-host setting |
| 178 | }; |
| 179 | |
| 180 | cdrom |
| 181 | { |
| 182 | mount "/cdrom"; |
| 183 | |
| 184 | // You need the trailing slash! |
| 185 | "/cdrom/" |
| 186 | { |
| 187 | Mount "sleep 1000"; |
| 188 | UMount "sleep 500"; |
| 189 | } |
| 190 | }; |
| 191 | |
| 192 | gpgv |
| 193 | { |
| 194 | Options {"--ignore-time-conflict";} // not very useful on a normal system |
| 195 | }; |
| 196 | }; |
| 197 | |
| 198 | // Directory layout |
| 199 | Dir "/" |
| 200 | { |
| 201 | // Location of the state dir |
| 202 | State "var/lib/apt/" |
| 203 | { |
| 204 | Lists "lists/"; |
| 205 | xstatus "xstatus"; |
| 206 | userstatus "status.user"; |
| 207 | status "/var/lib/dpkg/status"; |
| 208 | cdroms "cdroms.list"; |
| 209 | }; |
| 210 | |
| 211 | // Location of the cache dir |
| 212 | Cache "var/cache/apt/" { |
| 213 | Archives "archives/"; |
| 214 | srcpkgcache "srcpkgcache.bin"; |
| 215 | pkgcache "pkgcache.bin"; |
| 216 | }; |
| 217 | |
| 218 | // Config files |
| 219 | Etc "etc/apt/" { |
| 220 | SourceList "sources.list"; |
| 221 | Main "apt.conf"; |
| 222 | Preferences "preferences"; |
| 223 | Parts "apt.conf.d/"; |
| 224 | }; |
| 225 | |
| 226 | // Locations of binaries |
| 227 | Bin { |
| 228 | methods "/usr/lib/apt/methods/"; |
| 229 | gzip "/bin/gzip"; |
| 230 | gpg "/usr/bin/gpgv"; |
| 231 | dpkg "/usr/bin/dpkg"; |
| 232 | dpkg-source "/usr/bin/dpkg-source"; |
| 233 | dpkg-buildpackage "/usr/bin/dpkg-buildpackage"; |
| 234 | apt-get "/usr/bin/apt-get"; |
| 235 | apt-cache "/usr/bin/apt-cache"; |
| 236 | }; |
| 237 | |
| 238 | // Location of the logfile |
| 239 | Log "var/log/apt" { |
| 240 | Terminal "term.log"; |
| 241 | }; |
| 242 | }; |
| 243 | |
| 244 | // Things that effect the APT dselect method |
| 245 | DSelect |
| 246 | { |
| 247 | Clean "auto"; // always|auto|prompt|never |
| 248 | Options "-f"; |
| 249 | UpdateOptions ""; |
| 250 | PromptAfterUpdate "no"; |
| 251 | CheckDir "no"; |
| 252 | } |
| 253 | |
| 254 | DPkg |
| 255 | { |
| 256 | // Probably don't want to use force-downgrade.. |
| 257 | Options {"--force-overwrite";"--force-downgrade";} |
| 258 | |
| 259 | // Auto re-mounting of a readonly /usr |
| 260 | Pre-Invoke {"mount -o remount,rw /usr";}; |
| 261 | Post-Invoke {"mount -o remount,ro /usr";}; |
| 262 | |
| 263 | // Prevents daemons from getting cwd as something mountable (default) |
| 264 | Run-Directory "/"; |
| 265 | |
| 266 | // Build options for apt-get source --compile |
| 267 | Build-Options "-b -uc"; |
| 268 | |
| 269 | // Pre-configure all packages before they are installed using debconf. |
| 270 | Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";}; |
| 271 | |
| 272 | // Flush the contents of stdin before forking dpkg. |
| 273 | FlushSTDIN "true"; |
| 274 | |
| 275 | // Control the size of the command line passed to dpkg. |
| 276 | MaxBytes 1024; |
| 277 | MaxArgs 350; |
| 278 | |
| 279 | // controls if apt will apport on the first dpkg error or if it |
| 280 | // tries to install as many packages as possible |
| 281 | StopOnError "true"; |
| 282 | } |
| 283 | |
| 284 | /* Options you can set to see some debugging text They correspond to names |
| 285 | of classes in the source code */ |
| 286 | Debug |
| 287 | { |
| 288 | pkgProblemResolver "false"; |
| 289 | pkgDepCache::AutoInstall "false"; // what packages apt install to satify dependencies |
| 290 | pkgAcquire "false"; |
| 291 | pkgAcquire::Worker "false"; |
| 292 | pkgAcquire::Auth "false"; |
| 293 | pkgDPkgPM "false"; |
| 294 | pkgDPkgProgressReporting "false"; |
| 295 | pkgOrderList "false"; |
| 296 | pkgAutoRemove "false"; // show information about automatic removes |
| 297 | BuildDeps "false"; |
| 298 | pkgInitialize "false"; // This one will dump the configuration space |
| 299 | NoLocking "false"; |
| 300 | Acquire::Ftp "false"; // Show ftp command traffic |
| 301 | Acquire::Http "false"; // Show http command traffic |
| 302 | Acquire::Https "false"; // Show https debug |
| 303 | Acquire::gpgv "false"; // Show the gpgv traffic |
| 304 | aptcdrom "false"; // Show found package files |
| 305 | IdentCdrom "false"; |
| 306 | |
| 307 | } |
| 308 | |
| 309 | /* Whatever you do, do not use this configuration file!! Take out ONLY |
| 310 | the portions you need! */ |
| 311 | This Is Not A Valid Config File |