Refactor distro vars include

We can simplify this logic a little.

Change-Id: Ib7429b7409e05af5b0b82e47c04633fe8e731cb8
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-01-27 12:05:23 -05:00
parent 531d0960e8
commit fa67753f17
2 changed files with 1 additions and 6 deletions

View File

@ -13,12 +13,7 @@
# under the License.
---
- name: Include OS-specific variables
include_vars: "{{ ansible_distribution|lower }}.yaml"
when: ansible_os_family == 'Debian'
- name: Include OS-specific variables
include_vars: "{{ ansible_os_family|lower }}.yaml"
when: ansible_os_family == 'RedHat'
include_vars: "{{ ansible_os_family | lower }}.yaml"
- include: "{{ nodepool_task }}.yaml"
with_items: "{{ nodepool_task_manager }}"