25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

33 satır
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 %}