You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 line
663B

  1. ---
  2. - name: cleanup debian ansible package
  3. apt:
  4. pkg: ansible
  5. state: absent
  6. - name: cleanup ansible lxc_ssh plugin
  7. file:
  8. path: /usr/share/ansible/plugins/connection/lxc_ssh
  9. state: absent
  10. - name: cleanup ansible ovh module
  11. file:
  12. path: /usr/share/ansible/modules/ovh
  13. state: absent
  14. when: not ansible_with_ovh_module
  15. - name: cleanup ara pip package
  16. pip:
  17. name: ara
  18. state: absent
  19. when: not ansible_use_ara
  20. - name: cleanup mitogen pip package
  21. pip:
  22. name: mitogen
  23. state: absent
  24. when: not ansible_use_mitogen
  25. - name: cleanup ansible ovh module
  26. file:
  27. path: /usr/share/ansible/modules/ovh/
  28. state: absent