configure-index 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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. In some instances involving filenames it is possible to set the default
  7. directory when the path is evaluated. This means you can use relative
  8. paths within the sub scope.
  9. The configuration directives are specified in a tree with {} designating
  10. a subscope relative to the tag before the {}. You can further specify
  11. a subscope using scope notation eg,
  12. APT::Architecture "i386";
  13. This is prefixed with the current scope. Scope notation must be used
  14. if an option is specified on the command line with -o.
  15. */
  16. quiet "0";
  17. // Options for APT in general
  18. APT
  19. {
  20. Architecture "i386";
  21. Build-Essential "build-essential";
  22. NeverAutoRemove { "linux-image.*"; }; // packages that should never
  23. // considered for autoRemove
  24. // Options for apt-get
  25. Get
  26. {
  27. Arch-Only "false";
  28. AllowUnauthenticated "false";
  29. AutomaticRemove "false";
  30. HideAutoRemove "false";
  31. Download-Only "false";
  32. Simulate "false";
  33. Assume-Yes "false";
  34. Force-Yes "false"; // I would never set this.
  35. Fix-Broken "false";
  36. Fix-Missing "false";
  37. Show-Upgraded "false";
  38. Show-Versions "false";
  39. Upgrade "true";
  40. Print-URIs "false";
  41. Compile "false";
  42. Download "true";
  43. Purge "false";
  44. List-Cleanup "true";
  45. ReInstall "false";
  46. Trivial-Only "false";
  47. Remove "true";
  48. Only-Source "";
  49. Diff-Only "false";
  50. Tar-Only "false";
  51. Build-Dep-Automatic "true";
  52. Show-User-Simulation-Note "true";
  53. };
  54. Cache
  55. {
  56. Important "false";
  57. AllVersions "false";
  58. GivenOnly "false";
  59. RecurseDepends "false";
  60. ShowFull "false";
  61. Generate "true";
  62. NamesOnly "false";
  63. AllNames "false";
  64. Installed "false";
  65. };
  66. CDROM
  67. {
  68. Rename "false";
  69. NoMount "false";
  70. Fast "false";
  71. NoAct "false";
  72. };
  73. Update
  74. {
  75. Pre-Invoke {"touch /var/lib/apt/pre-update-stamp"; };
  76. Post-Invoke {"touch /var/lib/apt/post-update-stamp"; };
  77. };
  78. Authentication
  79. {
  80. TrustCDROM "false"; // consider the CDROM always trusted
  81. };
  82. // Some general options
  83. Ignore-Hold "false";
  84. Clean-Installed "true";
  85. Immediate-Configure "true"; // DO NOT turn this off, see the man page
  86. Force-LoopBreak "false"; // DO NOT turn this on, see the man page
  87. Cache-Limit "4194304";
  88. Default-Release "";
  89. // consider Recommends, Suggests as important dependencies that should
  90. // be installed by default
  91. Install-Recommends "true";
  92. Install-Suggests "false";
  93. // consider dependencies of packages in this section manual
  94. Never-MarkAuto-Sections {"metapackages"; "universe/metapackages"; };
  95. // Write progress messages on this fd (for stuff like base-config)
  96. Status-Fd "-1";
  97. // Keep the list of FDs open (normally apt closes all fds when it
  98. // does a ExecFork)
  99. Keep-Fds {};
  100. // control parameters for cron jobs by /etc/cron.daily/apt
  101. Periodic
  102. {
  103. BackupArchiveInterval "0";
  104. // - Backup after n-days if archive contents changed.(0=disable)
  105. BackupLevel "3";
  106. // - Backup level.(0=disable), 1 is invalid.
  107. // APT::Archives::MaxAge "0"; (old, deprecated)
  108. MaxAge "0"; // (new)
  109. // - Set maximum allowed age of a cache package file. If a cache
  110. // package file is older it is deleted (0=disable)
  111. // APT::Archives::MinAge "2"; (old, deprecated)
  112. MinAge "2"; // (new)
  113. // - Set minimum age of a package file. If a file is younger it
  114. // will not be deleted (0=disable). Usefull to prevent races
  115. // and to keep backups of the packages for emergency.
  116. // APT::Archives::MaxSize "0"; (old, deprecated)
  117. MaxSize "0"; // (new)
  118. // - Set maximum size of the cache in MB (0=disable). If the cache
  119. // is bigger, cached package files are deleted until the size
  120. // requirement is met (the biggest packages will be deleted
  121. // first).
  122. Update-Package-Lists "0";
  123. // - Do "apt-get update" automatically every n-days (0=disable)
  124. //
  125. Download-Upgradeable-Packages "0";
  126. // - Do "apt-get upgrade --download-only" every n-days (0=disable)
  127. //
  128. Unattended-Upgrade "0";
  129. // - Run the "unattended-upgrade" security upgrade script
  130. // every n-days (0=disabled)
  131. // Requires the package "unattended-upgrades" and will write
  132. // a log in /var/log/unattended-upgrades
  133. //
  134. AutocleanInterval "0";
  135. // - Do "apt-get autoclean" every n-days (0=disable)
  136. Verbose "0";
  137. // - Send report mail to root
  138. // 0: no report (or null string)
  139. // 1: progress report (actually any string)
  140. // 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
  141. // 3: + trace on
  142. };
  143. };
  144. // Options for the downloading routines
  145. Acquire
  146. {
  147. Queue-Mode "host"; // host|access
  148. Retries "0";
  149. Source-Symlinks "true";
  150. ForceHash "sha256"; // hashmethod used for expected hash: sha256, sha1 or md5sum
  151. PDiffs "true"; // try to get the IndexFile diffs
  152. PDiffs::FileLimit "4"; // don't use diffs if we would need more than 4 diffs
  153. PDiffs::SizeLimit "50"; // don't use diffs if size of all patches excess
  154. // 50% of the size of the original file
  155. // HTTP method configuration
  156. http
  157. {
  158. Proxy "http://127.0.0.1:3128";
  159. Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
  160. Timeout "120";
  161. Pipeline-Depth "5";
  162. AllowRedirect "true";
  163. // Cache Control. Note these do not work with Squid 2.0.2
  164. No-Cache "false";
  165. Max-Age "86400"; // 1 Day age on index files
  166. No-Store "false"; // Prevent the cache from storing archives
  167. Dl-Limit "7"; // 7Kb/sec maximum download rate
  168. User-Agent "Debian APT-HTTP/1.3";
  169. };
  170. // HTTPS method configuration: uses the http
  171. // - proxy config
  172. // - cache-control values
  173. // - Dl-Limit, Timout, ... values
  174. // if not set explicit for https
  175. //
  176. // see /usr/share/doc/apt/examples/apt-https-method-example.conf.gz
  177. // for more examples
  178. https
  179. {
  180. Verify-Peer "false";
  181. SslCert "/etc/apt/some.pem";
  182. CaPath "/etc/ssl/certs";
  183. Verify-Host" "true";
  184. AllowRedirect "true";
  185. Timeout "120";
  186. AllowRedirect "true";
  187. // Cache Control. Note these do not work with Squid 2.0.2
  188. No-Cache "false";
  189. Max-Age "86400"; // 1 Day age on index files
  190. No-Store "false"; // Prevent the cache from storing archives
  191. Dl-Limit "7"; // 7Kb/sec maximum download rate
  192. User-Agent "Debian APT-CURL/1.0";
  193. };
  194. ftp
  195. {
  196. Proxy "ftp://127.0.0.1/";
  197. Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
  198. /* Required script to perform proxy login. This example should work
  199. for tisfwtk */
  200. ProxyLogin
  201. {
  202. "USER $(PROXY_USER)";
  203. "PASS $(PROXY_PASS)";
  204. "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
  205. "PASS $(SITE_PASS)";
  206. };
  207. Timeout "120";
  208. /* Passive mode control, proxy, non-proxy and per-host. Pasv mode
  209. is preferred if possible */
  210. Passive "true";
  211. Proxy::Passive "true";
  212. Passive::http.us.debian.org "true"; // Specific per-host setting
  213. };
  214. cdrom
  215. {
  216. // do auto detection of the cdrom mountpoint
  217. AutoDetect "true";
  218. // cdrom mountpoint (needs to be defined in fstab if AutoDetect is not used)
  219. mount "/cdrom";
  220. // You need the trailing slash!
  221. "/cdrom/"
  222. {
  223. Mount "sleep 1000";
  224. UMount "sleep 500";
  225. }
  226. };
  227. gpgv
  228. {
  229. Options {"--ignore-time-conflict";} // not very useful on a normal system
  230. };
  231. CompressionTypes
  232. {
  233. bz2 "bzip2";
  234. lzma "lzma";
  235. gz "gzip";
  236. Order { "gz"; "lzma"; "bz2"; };
  237. };
  238. Languages
  239. {
  240. "environment";
  241. "de";
  242. "en";
  243. "none";
  244. "fr";
  245. };
  246. };
  247. // Directory layout
  248. Dir "/"
  249. {
  250. // Location of the state dir
  251. State "var/lib/apt/"
  252. {
  253. Lists "lists/";
  254. xstatus "xstatus";
  255. userstatus "status.user";
  256. status "/var/lib/dpkg/status";
  257. cdroms "cdroms.list";
  258. };
  259. // Location of the cache dir
  260. Cache "var/cache/apt/" {
  261. Archives "archives/";
  262. // backup directory created by /etc/cron.daily/apt
  263. Backup "backup/";
  264. srcpkgcache "srcpkgcache.bin";
  265. pkgcache "pkgcache.bin";
  266. };
  267. // Config files
  268. Etc "etc/apt/" {
  269. Main "apt.conf";
  270. Netrc "auth.conf";
  271. Parts "apt.conf.d/";
  272. Preferences "preferences";
  273. PreferencesParts "preferences.d";
  274. SourceList "sources.list";
  275. SourceParts "sources.list.d";
  276. VendorList "vendors.list";
  277. VendorParts "vendors.list.d";
  278. Trusted "trusted.gpg";
  279. TrustedParts "trusted.gpg.d";
  280. };
  281. // Locations of binaries
  282. Bin {
  283. methods "/usr/lib/apt/methods/";
  284. gzip "/bin/gzip";
  285. gpg "/usr/bin/gpgv";
  286. dpkg "/usr/bin/dpkg";
  287. dpkg-source "/usr/bin/dpkg-source";
  288. dpkg-buildpackage "/usr/bin/dpkg-buildpackage";
  289. apt-get "/usr/bin/apt-get";
  290. apt-cache "/usr/bin/apt-cache";
  291. };
  292. // Location of the logfile
  293. Log "var/log/apt" {
  294. Terminal "term.log";
  295. History "history.log";
  296. };
  297. // Media
  298. Media
  299. {
  300. // Media AutoDetect mount path
  301. MountPath "/media/apt";
  302. };
  303. // Media
  304. Media
  305. {
  306. // Media AutoDetect mount path
  307. MountPath "/media/apt";
  308. };
  309. };
  310. // Things that effect the APT dselect method
  311. DSelect
  312. {
  313. Clean "auto"; // always|auto|prompt|never
  314. Options "-f";
  315. UpdateOptions "";
  316. PromptAfterUpdate "no";
  317. CheckDir "no";
  318. }
  319. DPkg
  320. {
  321. // let apt aggressivly use dpkg triggers
  322. NoTriggers "true";
  323. NoConfigure "true";
  324. ConfigurePending "true";
  325. // Probably don't want to use force-downgrade..
  326. Options {"--force-overwrite";"--force-downgrade";}
  327. // Auto re-mounting of a readonly /usr
  328. Pre-Invoke {"mount -o remount,rw /usr";};
  329. Post-Invoke {"mount -o remount,ro /usr";};
  330. Chroot-Directory "/";
  331. // Prevents daemons from getting cwd as something mountable (default)
  332. Run-Directory "/";
  333. // Build options for apt-get source --compile
  334. Build-Options "-b -uc";
  335. // Pre-configure all packages before they are installed using debconf.
  336. Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";};
  337. // Flush the contents of stdin before forking dpkg.
  338. FlushSTDIN "true";
  339. // Control the size of the command line passed to dpkg.
  340. MaxBytes 1024;
  341. MaxArgs 350;
  342. // controls if apt will apport on the first dpkg error or if it
  343. // tries to install as many packages as possible
  344. StopOnError "true";
  345. }
  346. /* Options you can set to see some debugging text They correspond to names
  347. of classes in the source code */
  348. Debug
  349. {
  350. pkgProblemResolver "false";
  351. pkgProblemResolver::ShowScores "false";
  352. pkgDepCache::AutoInstall "false"; // what packages apt install to satify dependencies
  353. pkgDepCache::Marker "false";
  354. pkgCacheGen "false";
  355. pkgAcquire "false";
  356. pkgAcquire::Worker "false";
  357. pkgAcquire::Auth "false";
  358. pkgDPkgPM "false";
  359. pkgDPkgProgressReporting "false";
  360. pkgOrderList "false";
  361. pkgPackageManager "false"; // OrderList/Configure debugging
  362. pkgAutoRemove "false"; // show information about automatic removes
  363. BuildDeps "false";
  364. pkgInitialize "false"; // This one will dump the configuration space
  365. NoLocking "false";
  366. Acquire::Ftp "false"; // Show ftp command traffic
  367. Acquire::Http "false"; // Show http command traffic
  368. Acquire::Https "false"; // Show https debug
  369. Acquire::gpgv "false"; // Show the gpgv traffic
  370. aptcdrom "false"; // Show found package files
  371. IdentCdrom "false";
  372. acquire::netrc "false"; // netrc parser
  373. }
  374. pkgCacheGen::Essential "native"; // other modes: all, none, installed
  375. /* Whatever you do, do not use this configuration file!! Take out ONLY
  376. the portions you need! */
  377. This Is Not A Valid Config File