configure-index 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. // $Id: configure-index,v 1.10 2004/07/17 19:37:16 mdz Exp $
  2. /* This file is an index of all APT configuration directives. It should
  3. NOT actually be used as a real config file, though it is (except for the
  4. last line) a completely valid file. Most of the options have sane default
  5. values, unless you have specific needs you should NOT include arbitary
  6. items in a custom configuration.
  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. The configuration directives are specified in a tree with {} designating
  11. a subscope relative to the tag before the {}. You can further specify
  12. a subscope using scope notation eg,
  13. APT::Architecture "i386";
  14. This is prefixed with the current scope. Scope notation must be used
  15. if an option is specified on the command line with -o.
  16. */
  17. quiet "0";
  18. // Options for APT in general
  19. APT
  20. {
  21. Architecture "i386";
  22. Build-Essential "build-essential";
  23. // Options for apt-get
  24. Get
  25. {
  26. Arch-Only "false";
  27. Download-Only "false";
  28. Simulate "false";
  29. Assume-Yes "false";
  30. Force-Yes "false"; // I would never set this.
  31. Fix-Broken "false";
  32. Fix-Missing "false";
  33. Show-Upgraded "false";
  34. Show-Versions "false";
  35. Upgrade "true";
  36. Print-URIs "false";
  37. Compile "false";
  38. Download "true";
  39. Purge "false";
  40. List-Cleanup "true";
  41. ReInstall "false";
  42. Trivial-Only "false";
  43. Remove "true";
  44. Only-Source "";
  45. Diff-Only "false";
  46. Tar-Only "false";
  47. };
  48. Cache
  49. {
  50. Important "false";
  51. AllVersions "false";
  52. GivenOnly "false";
  53. RecurseDepends "false";
  54. ShowFull "false";
  55. Generate "true";
  56. NamesOnly "false";
  57. AllNames "false";
  58. Installed "false";
  59. };
  60. CDROM
  61. {
  62. Rename "false";
  63. NoMount "false";
  64. Fast "false";
  65. NoAct "false";
  66. };
  67. GPGV
  68. {
  69. TrustedKeyring "/etc/apt/trusted.gpg";
  70. };
  71. // Some general options
  72. Ignore-Hold "false";
  73. Clean-Installed "true";
  74. Immediate-Configure "true"; // DO NOT turn this off, see the man page
  75. Force-LoopBreak "false"; // DO NOT turn this on, see the man page
  76. Cache-Limit "4194304";
  77. Default-Release "";
  78. };
  79. // Options for the downloading routines
  80. Acquire
  81. {
  82. Queue-Mode "host"; // host|access
  83. Retries "0";
  84. Source-Symlinks "true";
  85. // HTTP method configuration
  86. http
  87. {
  88. Proxy "http://127.0.0.1:3128";
  89. Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
  90. Timeout "120";
  91. Pipeline-Depth "5";
  92. // Cache Control. Note these do not work with Squid 2.0.2
  93. No-Cache "false";
  94. Max-Age "86400"; // 1 Day age on index files
  95. No-Store "false"; // Prevent the cache from storing archives
  96. };
  97. ftp
  98. {
  99. Proxy "ftp://127.0.0.1/";
  100. Proxy::http.us.debian.org "DIRECT"; // Specific per-host setting
  101. /* Required script to perform proxy login. This example should work
  102. for tisfwtk */
  103. ProxyLogin
  104. {
  105. "USER $(PROXY_USER)";
  106. "PASS $(PROXY_PASS)";
  107. "USER $(SITE_USER)@$(SITE):$(SITE_PORT)";
  108. "PASS $(SITE_PASS)";
  109. };
  110. Timeout "120";
  111. /* Passive mode control, proxy, non-proxy and per-host. Pasv mode
  112. is prefered if possible */
  113. Passive "true";
  114. Proxy::Passive "true";
  115. Passive::http.us.debian.org "true"; // Specific per-host setting
  116. };
  117. cdrom
  118. {
  119. mount "/cdrom";
  120. // You need the trailing slash!
  121. "/cdrom/"
  122. {
  123. Mount "sleep 1000";
  124. UMount "sleep 500";
  125. }
  126. };
  127. };
  128. // Directory layout
  129. Dir "/"
  130. {
  131. // Location of the state dir
  132. State "var/lib/apt/"
  133. {
  134. Lists "lists/";
  135. xstatus "xstatus";
  136. userstatus "status.user";
  137. status "/var/lib/dpkg/status";
  138. cdroms "cdroms.list";
  139. };
  140. // Location of the cache dir
  141. Cache "var/cache/apt/" {
  142. Archives "archives/";
  143. srcpkgcache "srcpkgcache.bin";
  144. pkgcache "pkgcache.bin";
  145. };
  146. // Config files
  147. Etc "etc/apt/" {
  148. SourceList "sources.list";
  149. Main "apt.conf";
  150. Preferences "preferences";
  151. Parts "apt.conf.d/";
  152. };
  153. // Locations of binaries
  154. Bin {
  155. methods "/usr/lib/apt/methods/";
  156. gzip "/bin/gzip";
  157. gpg "/usr/bin/gpgv";
  158. dpkg "/usr/bin/dpkg";
  159. dpkg-source "/usr/bin/dpkg-source";
  160. dpkg-buildpackage "/usr/bin/dpkg-buildpackage"
  161. apt-get "/usr/bin/apt-get";
  162. apt-cache "/usr/bin/apt-cache";
  163. };
  164. };
  165. // Things that effect the APT dselect method
  166. DSelect
  167. {
  168. Clean "auto"; // always|auto|prompt|never
  169. Options "-f";
  170. UpdateOptions "";
  171. PromptAfterUpdate "no";
  172. CheckDir "no";
  173. }
  174. DPkg
  175. {
  176. // Probably don't want to use force-downgrade..
  177. Options {"--force-overwrite";"--force-downgrade";}
  178. // Auto re-mounting of a readonly /usr
  179. Pre-Invoke {"mount -o remount,rw /usr";};
  180. Post-Invoke {"mount -o remount,ro /usr";};
  181. // Prevents daemons from getting cwd as something mountable (default)
  182. Run-Directory "/";
  183. // Build options for apt-get source --compile
  184. Build-Options "-b -uc";
  185. // Pre-configure all packages before they are installed using debconf.
  186. Pre-Install-Pkgs {"dpkg-preconfigure --apt --priority=low --frontend=dialog";};
  187. // Flush the contents of stdin before forking dpkg.
  188. FlushSTDIN "true";
  189. // Control the size of the command line passed to dpkg.
  190. MaxBytes 1024;
  191. MaxArgs 350;
  192. }
  193. /* Options you can set to see some debugging text They correspond to names
  194. of classes in the source code */
  195. Debug
  196. {
  197. pkgProblemResolver "false";
  198. pkgAcquire "false";
  199. pkgAcquire::Worker "false";
  200. pkgDPkgPM "false";
  201. pkgOrderList "false";
  202. pkgInitialize "false"; // This one will dump the configuration space
  203. NoLocking "false";
  204. Acquire::Ftp "false"; // Show ftp command traffic
  205. Acquire::Http "false"; // Show http command traffic
  206. Acquire::gpgv "false"; // Show the gpgv traffic
  207. aptcdrom "false"; // Show found package files
  208. IdentCdrom "false";
  209. }
  210. /* Whatever you do, do not use this configuration file!! Take out ONLY
  211. the portions you need! */
  212. This Is Not A Valid Config File