Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 řádky
306B

  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