matrix-docker-ansible-deploy/roles/matrix-base/tasks/server_base
Slavi Pantaleev 7330992b20 Do not compare ansible_distribution_major_version as a string
Fedora 35 is:

- `ansible_os_family = 'RedHat'`
- `ansible_distribution_major_version = '35'`

Our RedHat checks against v7/v8 are really for RHEL derivatives (CentOS, Rockylinux,
AlmaLinux), but the same checks (by coincidence) apply for Fedora 35.

The problem is that `'35' > '7'` (comparing these as strings) is
`false`.

This patch makes sure that we always cast
`ansible_distribution_major_version` to an integer.

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1610
2022-02-09 16:20:09 +02:00
..
setup.yml Do not compare ansible_distribution_major_version as a string 2022-02-09 16:20:09 +02:00
setup_archlinux.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
setup_debian.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
setup_raspbian.yml fix: all praise the allmighty yamllinter 2022-02-05 21:32:54 +01:00
setup_redhat.yml fix: manually merge upstream 2022-02-09 09:01:56 +01:00
setup_redhat8.yml fix: manually merge upstream 2022-02-09 09:01:56 +01:00