Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

33 lines
1.4KB

  1. {{ ansible_managed | comment }}
  2. deb {{ debian_mirror }} {{ debian_distribution }} {{ debian_components | join(" ") }}
  3. {% if debian_sources %}
  4. deb-src {{ debian_mirror }} {{ debian_distribution }} {{ debian_components | join(" ") }}
  5. {% endif %}
  6. deb {{ debian_mirror }} {{ debian_distribution }}-updates {{ debian_components | join(" ") }}
  7. {% if debian_sources %}
  8. deb-src {{ debian_mirror }} {{ debian_distribution }}-updates {{ debian_components | join(" ") }}
  9. {% endif %}
  10. {% if debian_backports %}
  11. deb {{ debian_mirror }} {{ debian_backports_distribution }} {{ debian_components | join(" ") }}
  12. {% if debian_backports_sources %}
  13. deb-src {{ debian_mirror }} {{ debian_backports_distribution }} {{ debian_components | join(" ") }}
  14. {% endif %}
  15. {% endif %}
  16. {% if debian_security %}
  17. {% if debian_distribution == " stretch" or debian_distribution == "buster" %}
  18. deb http://security.debian.org/debian-security {{ debian_distribution }}/updates {{ debian_components | join(" ") }}
  19. {% if debian_security_sources %}
  20. deb-src http://security.debian.org/debian-security {{ debian_distribution }}/updates {{ debian_components | join(" ") }}
  21. {% endif %}
  22. {% else %}
  23. deb {{ debian_security_mirror }} {{ debian_security_distribution }} {{ debian_components | join(" ") }}
  24. {% if debian_security_sources %}
  25. deb-src {{ debian_security_mirror }} {{ debian_security_distribution }} {{ debian_components | join(" ") }}
  26. {% endif %}
  27. {% endif %}
  28. {% endif %}