Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Use vars/RedHat_N.yml symlink for CentOS, Rocky, Alma wherever possible #230

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions tests/vars/rh_distros_vars.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# vars for handling conditionals for RedHat and clones
# DO NOT EDIT - file is auto-generated
---
# Ansible distribution identifiers that the role treats like RHEL
__kernel_settings_rh_distros:
- AlmaLinux
- CentOS
- RedHat
- Rocky

# Same as above but includes Fedora
__kernel_settings_rh_distros_fedora: "{{ __kernel_settings_rh_distros + ['Fedora'] }}"

# Use this in conditionals to check if distro is Red Hat or clone
__kernel_settings_is_rh_distro: "{{ ansible_distribution in __kernel_settings_rh_distros }}"

# Use this in conditionals to check if distro is Red Hat or clone, or Fedora
__kernel_settings_is_rh_distro_fedora: "{{ ansible_distribution in __kernel_settings_rh_distros_fedora }}"
1 change: 1 addition & 0 deletions vars/AlmaLinux_7.yml
3 changes: 0 additions & 3 deletions vars/CentOS_7.yml

This file was deleted.

1 change: 1 addition & 0 deletions vars/CentOS_7.yml
1 change: 1 addition & 0 deletions vars/Rocky_7.yml
18 changes: 18 additions & 0 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,21 @@ __kernel_settings_required_facts:
# the 'gather_subset' parameter of the 'setup' module
__kernel_settings_required_facts_subsets: "{{ ['!all', '!min'] +
__kernel_settings_required_facts }}"

# BEGIN - DO NOT EDIT THIS BLOCK - rh distros variables
# Ansible distribution identifiers that the role treats like RHEL
__kernel_settings_rh_distros:
- AlmaLinux
- CentOS
- RedHat
- Rocky

# Same as above but includes Fedora
__kernel_settings_rh_distros_fedora: "{{ __kernel_settings_rh_distros + ['Fedora'] }}"

# Use this in conditionals to check if distro is Red Hat or clone
__kernel_settings_is_rh_distro: "{{ ansible_distribution in __kernel_settings_rh_distros }}"

# Use this in conditionals to check if distro is Red Hat or clone, or Fedora
__kernel_settings_is_rh_distro_fedora: "{{ ansible_distribution in __kernel_settings_rh_distros_fedora }}"
# END - DO NOT EDIT THIS BLOCK - rh distros variables
Loading