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.
ansible/test/integration/targets/deb822_repository/tasks/main.yml

20 lines
406 B
YAML

- 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