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.
20 lines
406 B
YAML
20 lines
406 B
YAML
2 years ago
|
- meta: end_play
|
||
|
when: ansible_os_family != 'Debian'
|
||
|
|
||
|
- block:
|
||
|
- name: install python3-debian
|
||
|
apt:
|
||
|
name: python3-debian
|
||
|
state: present
|
||
|
register: py3_deb_install
|
||
|
|
||
|
- import_tasks: test.yml
|
||
|
|
||
|
- import_tasks: install.yml
|
||
|
always:
|
||
|
- name: uninstall python3-debian
|
||
|
apt:
|
||
|
name: python3-debian
|
||
|
state: absent
|
||
|
when: py3_deb_install is changed
|