Update to work for RHEL8 and future proof by making RHEL-6 the exception case

This commit is contained in:
Patrick Ladd 2020-07-01 16:51:32 -04:00
parent 2c9f88b750
commit 90446e8967
4 changed files with 6 additions and 6 deletions

View File

@ -3,11 +3,11 @@
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
- name: Include overrides specific to RHEL 7.
include_vars: RedHat-7.yml
- name: Include overrides specific to RHEL 6 and below
include_vars: RedHat-6.yml
when:
- ansible_os_family == 'RedHat'
- ansible_distribution_major_version == "7"
- ansible_distribution_major_version < "7"
- name: Include overrides specific to Fedora.
include_vars: Fedora.yml

2
vars/RedHat-6.yml Normal file
View File

@ -0,0 +1,2 @@
---
nfs_server_daemon: nfs

View File

@ -1,2 +0,0 @@
---
nfs_server_daemon: nfs-server

View File

@ -1,2 +1,2 @@
---
nfs_server_daemon: nfs
nfs_server_daemon: nfs-server