Fix condition in main task

The Buster task should not be triggered with Debian Stretch systems
This commit is contained in:
Tristan PILAT 2019-10-01 17:26:33 +02:00
parent a478c773eb
commit f96c0b82ff

View file

@ -12,4 +12,4 @@
when: ansible_distribution_release == "stretch" when: ansible_distribution_release == "stretch"
- include: main_buster.yml - include: main_buster.yml
when: ansible_distribution_major_version | version_compare('9', '>=') when: ansible_distribution_release == "buster"