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ů.
|
- ---
-
- - 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
|