Alma Linux not recognised as RedHat family

I’ve got some playbooks that install updates to some servers based on operating system family like so:

  • include_tasks: update-RedHat.yml
    when: (ansible_os_family == ‘RedHat’)

  • include_tasks: update-Debian.yml
    when: (ansible_os_family == ‘Debian’)

We recently changed a bunch of servers to Alma Linux and this conditional is being skipped due to Alma Linux not being flagged as being in that family.

I’m running AWX 17.1.0 with Ansible 2.9.18 on an Ubuntu 20.04 server. I found some stuff that suggests perhaps this version of ansible won’t recognise the family, but I’m pretty well stuck on how best to upgrade the ansible version. All the information I can find online just produces error rabbit holes and I’d rather avoid major change today if possible.

Is there another way I can get those servers included that anyone knows of?

Have you looked at the full ansible_facts for that OS? Maybe there is another value you can use other than os_family.

Support to detect AlmaLinux as being in the RedHat family was added in 2.9.19

Take note that 2.9 is now end of life. You should consider upgrading to a supported version.

Thanks so much - I was able to do this using:

when: (ansible_distribution == ‘AlmaLinux’)

And that is working as expected.

I've got some playbooks that install updates to some servers based on operating system family like so:

  - include_tasks: update-RedHat.yml
    when: (ansible_os_family == 'RedHat')

  - include_tasks: update-Debian.yml
    when: (ansible_os_family == 'Debian')

We recently changed a bunch of servers to Alma Linux and this conditional is being skipped due to Alma Linux not being flagged as being in that family.

I'm running AWX 17.1.0 with Ansible 2.9.18 on an Ubuntu 20.04 server. I found some stuff that suggests perhaps this version of ansible won't recognise the family, but I'm pretty well stuck on how best to upgrade the ansible version. All the information I can find online just produces error rabbit holes and I'd rather avoid major change today if possible.

Uninstall ansible. Install ansible-core, which contains the working
parts of ansible including the ansible commands.

      pip3 install --user ansible-core

Ignore the modern "ansible" package unless you really care to blow
half a Gig or so on 100 distinct ansible galaxy collection modules,
which are better updated individually.