您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

33 行
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 %}