Add AIO bootstrap support for EL10

Change-Id: Id8200a6649b0d80737bde518c4cf826a07e9a1e8
This commit is contained in:
Dmitriy Rabotyagov
2025-05-28 15:41:28 +02:00
parent 2c2723e756
commit dfd0939452
2 changed files with 5 additions and 3 deletions

View File

@@ -17,10 +17,11 @@
ansible.builtin.assert: ansible.builtin.assert:
that: that:
(ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or (ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'noble') (ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'noble') or
(ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '10')
msg: >- msg: >-
The only supported platforms for this release are Debian 12 (Bookworm) and The only supported platforms for this release are Debian 12 (Bookworm), Ubuntu 24.04 (Noble Numbat),
Ubuntu 24.04 (Noble Numbat). CentOS Stream 10 and RHEL 10 derivatives such as Rocky Linux.
when: (check_operating_system | default(True))| bool when: (check_operating_system | default(True))| bool
tags: tags:
- check-operating-system - check-operating-system

View File

@@ -17,6 +17,7 @@ packages_install:
- dbus - dbus
- ethtool - ethtool
- git-core - git-core
- gnupg2
- iputils - iputils
- lvm2 - lvm2
- python3 - python3