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

21 行
406B

  1. ---
  2. - name: base packages
  3. apt:
  4. pkg: "{{ debian_base_packages }}"
  5. when: debian_base_packages is defined
  6. - name: boot packages
  7. apt:
  8. pkg: "{{ debian_boot_packages }}"
  9. when: debian_boot_packages is defined
  10. - name: common packages
  11. apt:
  12. pkg: "{{ debian_common_packages }}"
  13. - name: custom packages
  14. apt:
  15. pkg: "{{ debian_custom_packages }}"
  16. when: debian_custom_packages is defined