From b8ce87168e3999a28930f5eba6237e3eeb8b32d7 Mon Sep 17 00:00:00 2001 From: Norman Ziegner Date: Tue, 8 Oct 2024 13:25:06 +0200 Subject: [PATCH] Start systemd udevd on Ubuntu 24.04 Signed-off-by: Norman Ziegner --- molecule/netplan/prepare.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/molecule/netplan/prepare.yml b/molecule/netplan/prepare.yml index 35f66496..c5ee1e97 100644 --- a/molecule/netplan/prepare.yml +++ b/molecule/netplan/prepare.yml @@ -16,4 +16,9 @@ update_cache: true state: "present" + - name: "Ensure systemd-udevd is started on Ubuntu 24.04" + ansible.builtin.service: + name: "systemd-udevd" + state: "started" + when: "ansible_facts.distribution_release | lower == 'noble'" ...