Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- ---
-
- - name: pin ansible for backports
- copy:
- src: apt-preferences
- dest: /etc/apt/preferences.d/ansible
-
- - name: install ansible
- apt:
- pkg: ansible
- state: present
-
- - name: install other tools
- apt:
- pkg: "{{item}}"
- state: present
- with_items:
- - ipv6calc
- - uuid
- - git
|