We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a49c24 commit 198b76dCopy full SHA for 198b76d
roles/rudder_repository/tasks/main.yml
@@ -5,10 +5,10 @@
5
when: ansible_facts['os_family'] == "Suse"
6
7
- include_tasks: modern_debian.yml
8
- when: _rudder_modern_debian | bool
+ when: ansible_facts['os_family'] == "Debian" and _rudder_modern_debian | bool
9
10
- include_tasks: old_debian.yml
11
- when: not _rudder_modern_debian | bool
+ when: ansible_facts['os_family'] == "Debian" and not _rudder_modern_debian | bool
12
13
- include_tasks: redhat.yml
14
when: ansible_facts['os_family'] == "RedHat"
0 commit comments