Saltstack Official Apt Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

126 lines
3.0KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. apt:
  5. # Set the right keyring for the distro (ie ubuntu-keyring or ...)
  6. keyring_package: debian-archive-keyring
  7. remove_sources_list: true
  8. clean_sources_list_d: true
  9. remove_preferences: true
  10. clean_preferences_d: true
  11. apt_conf_d:
  12. 30release:
  13. 'APT::Default-Release': stable
  14. '40dpkg-options':
  15. 'Dpkg::Options':
  16. - '--force-confdef'
  17. - '--force-confold'
  18. 60proxy:
  19. 'Acquire::ftp':
  20. Proxy: "ftp://127.0.0.1/"
  21. 'Proxy::http.us.debian.org': DIRECT
  22. ProxyLogin:
  23. - "USER $(PROXY_USER)"
  24. - "PASS $(PROXY_PASS)"
  25. - "USER $(SITE_USER)@$(SITE):$(SITE_PORT)"
  26. - "PASS $(SITE_PASS)"
  27. DSelect:
  28. Clean: auto
  29. Options: -f
  30. UpdateOptions: ""
  31. PromptAfterUpdate: "no"
  32. unattended:
  33. allowed_origins:
  34. - origin1
  35. - origin2
  36. package_blacklist:
  37. - package1
  38. - package2
  39. origins_patterns:
  40. - origin=SaltStack
  41. - origin=Debian,archive=stable,label=Debian-Security
  42. - origin=Debian,archive=oldstable,label=Debian-Security
  43. auto_fix_interrupted_dpkg: true
  44. minimal_steps: false
  45. install_on_shutdown: false
  46. mail: root
  47. mail_only_on_error: false
  48. remove_unused_dependencies: true
  49. automatic_reboot: false
  50. dl_limit: 0
  51. enabled: 1
  52. update_package_lists: 1
  53. download_upgradeable_packages: 1
  54. unattended_upgrade: 1
  55. auto_clean_interval: 7
  56. verbose: 2
  57. listchanges:
  58. profiles:
  59. cmdline:
  60. frontend: pager
  61. apt:
  62. frontend: pager
  63. email_address: root
  64. confirm: 1
  65. custom:
  66. frontend: browser
  67. browser: mozilla
  68. repositories:
  69. security-stable:
  70. distro: stable/updates
  71. url: http://security.debian.org
  72. comps: [main, contrib, non-free]
  73. arch: [amd64, i386]
  74. type: [binary, source]
  75. updates:
  76. distro: stable-updates
  77. url: http://deb.debian.org/debian/
  78. comps: [main, contrib, non-free]
  79. raspbian:
  80. distro: wheezy
  81. url: http://archive.raspbian.org/raspbian
  82. type: [source]
  83. key_url: https://archive.raspbian.org/raspbian.public.key
  84. debian-jessie:
  85. distro: jessie
  86. url: http://deb.debian.org/debian
  87. type: [source]
  88. comps: [main, contrib, non-free]
  89. dropbox:
  90. distro: jessie
  91. url: http://linux.dropbox.com/debian
  92. arch: [i386, amd64]
  93. keyid: 1C61A2656FB57B7E4DE0F4C1FC918B335044912E
  94. keyserver: hkp://pgp.mit.edu:80
  95. intranet:
  96. distro: stretch
  97. url: http://intranet.example.org
  98. opts: "trusted=yes"
  99. extranet:
  100. distro: stretch
  101. url: https://extranet.example.org
  102. opts:
  103. trusted: 'yes'
  104. another: whatever
  105. preferences:
  106. 00-rspamd:
  107. package: rspamd
  108. pin: origin rspamd.com
  109. priority: 650
  110. 01-all:
  111. pin: release stable
  112. priority: 610
  113. 02-all:
  114. pin: release testing
  115. priority: 600
  116. 03-all:
  117. pin: release unstable
  118. priority: 50