Validate if running CentOS OS is CentOS Stream

Change-Id: I2fe738249018e25e79fd726bc931be6b7bd91934
This commit is contained in:
Michał Nasiadka 2021-08-10 14:09:27 +02:00 committed by Radosław Piliszek
parent c0540760e0
commit d56dc34034

View File

@ -17,3 +17,18 @@
- ansible_facts.distribution_release not in host_os_distributions[ansible_facts.distribution]
- ansible_facts.distribution_version not in host_os_distributions[ansible_facts.distribution]
- ansible_facts.distribution_major_version not in host_os_distributions[ansible_facts.distribution]
- name: Checking if CentOS is Stream
become: true
command: grep -q Stream /etc/os-release
register: stream_status
changed_when: false
when:
- ansible_facts.distribution == 'CentOS'
- name: Fail if not running on CentOS Stream
fail:
msg: CentOS Linux is not supported, you need to run CentOS Stream.
when:
- ansible_facts.distribution == 'CentOS'
- stream_status.rc != 0