Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ---
-
- - name: make sure debian ansible package is absent
- apt:
- pkg: ansible
- state: absent
-
- - name: cleanup ansible ovh module
- file:
- path: /usr/share/ansible/modules/ovh
- state: absent
- when: not ansible_with_ovh_module
-
- - name: cleanup ara pip package
- pip:
- name: ara
- state: absent
- executable: pip3
- when: not ansible_use_ara
-
- - name: cleanup mitogen pip package
- pip:
- name: mitogen
- state: absent
- executable: pip3
- when: not ansible_use_mitogen
|