Merge pull request #43 from laddp/rhel8-support

Update to work for RHEL8 and future proof by making RHEL-6 the except…
This commit is contained in:
Jeff Geerling 2020-07-13 16:20:38 -05:00 committed by GitHub
commit 9794a9dfc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

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