Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 строка
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