mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
826 B
YAML
19 lines
826 B
YAML
6 years ago
|
- hosts: localhost
|
||
|
vars:
|
||
|
detect_paramiko: '{{ lookup("file", lookup("env", "OUTPUT_DIR") + "/detect-paramiko.json") | from_json }}'
|
||
|
tasks:
|
||
|
- name: Uninstall Paramiko and Verify Results
|
||
|
when: not detect_paramiko.found
|
||
|
block:
|
||
|
- name: Uninstall Paramiko
|
||
|
include_tasks: "{{ item }}"
|
||
|
with_first_found:
|
||
|
- "uninstall-{{ ansible_distribution }}-{{ ansible_distribution_major_version }}-python-{{ ansible_python.version.major }}.yml"
|
||
|
- "uninstall-{{ ansible_pkg_mgr }}-python-{{ ansible_python.version.major }}.yml"
|
||
|
- "uninstall-{{ ansible_pkg_mgr }}.yml"
|
||
|
- "uninstall-fail.yml"
|
||
|
- name: Verify Paramiko was uninstalled
|
||
|
detect_paramiko:
|
||
|
register: detect_paramiko
|
||
|
failed_when: detect_paramiko.found
|