您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

setup_Debian.yml 306B

7 年前
7 年前
7 年前
7 年前
7 年前
7 年前
7 年前
1234567891011121314151617181920
  1. ---
  2. - name: pin ansible for backports
  3. copy:
  4. src: apt-preferences
  5. dest: /etc/apt/preferences.d/ansible
  6. - name: install ansible
  7. apt:
  8. pkg: ansible
  9. state: present
  10. - name: install other tools
  11. apt:
  12. pkg: "{{item}}"
  13. state: present
  14. with_items:
  15. - ipv6calc
  16. - uuid
  17. - git