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
1 changed files with 1 additions and 1 deletions

View File

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