From 6bd5f9361c9634fb36305ab6e80531e5af6a89a9 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 18 Jul 2023 10:19:21 +0200 Subject: [PATCH] Installing systemd-udev with NVR Due to the bug [1] in CentOS packaging, systemd-udev is substituted with systemd-boot-unsigned. So you need to use NVR to properly install systemd-udev until the bug is fixed. [1] https://bugzilla.redhat.com/show_bug.cgi?id=2183279 Change-Id: I3c112b74b4777b9443f3c3041a51ecb770d48021 (cherry picked from commit cb8418715a139615175489a6589449f5f60a0158) --- vars/redhat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/redhat.yml b/vars/redhat.yml index 218e097..b1f7ae2 100644 --- a/vars/redhat.yml +++ b/vars/redhat.yml @@ -10,4 +10,4 @@ systemd_s3_packages: systemd_glusterfs_packages: - glusterfs - glusterfs-fuse - - systemd-udev + - "{{ ansible_facts['distribution_major_version'] < 9 | ternary('systemd-udev', 'systemd-udev-252-*') }}"