apt.conf 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // apt.conf -- APT configuration
  3. //
  4. APT {
  5. Build-Essential "openpkg";
  6. Ignore-Hold "false";
  7. Clean-Installed "true";
  8. Get {
  9. Arch-Only "false";
  10. Download-Only "false";
  11. Simulate "false";
  12. Assume-Yes "false";
  13. Force-Yes "false";
  14. Fix-Broken "false";
  15. Fix-Missing "false";
  16. Show-Upgraded "false";
  17. Upgrade "true";
  18. Print-URIs "false";
  19. Compile "false";
  20. Download "true";
  21. Purge "false";
  22. List-Cleanup "true";
  23. ReInstall "false";
  24. Trivial-Only "false";
  25. Remove "true";
  26. };
  27. Cache {
  28. Important "false";
  29. AllVersions "false";
  30. GivenOnly "false";
  31. RecruseDepends "false";
  32. };
  33. };
  34. RPM {
  35. PM "internal";
  36. Allow-Duplicated "false";
  37. };
  38. Acquire {
  39. Queue-Mode "host";
  40. Retries "0";
  41. Source-Symlinks "true";
  42. http {
  43. //Proxy "http://127.0.0.1:3128";
  44. //Proxy::ftp.openpkg.org "DIRECT";
  45. Timeout "120";
  46. Pipeline-Depth "5";
  47. No-Cache "false";
  48. Max-Age "86400";
  49. No-Store "false";
  50. };
  51. ftp {
  52. //Proxy "http://127.0.0.1:3128";
  53. //Proxy::ftp.openpkg.org "DIRECT";
  54. Timeout "120";
  55. Passive "true";
  56. Proxy::Passive "true";
  57. };
  58. };