From 06b81a63e3f341279540235669980e4363967a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Wed, 26 Jun 2024 15:04:53 -0400 Subject: [PATCH 1/2] archlinux: Disable systemd-nsresourced MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber (cherry picked from commit 73ad382aefc12e7bad514934f5484cc87efa1c77) Signed-off-by: Simon Deziel --- images/archlinux.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/images/archlinux.yaml b/images/archlinux.yaml index 99dcae2dc..252764284 100644 --- a/images/archlinux.yaml +++ b/images/archlinux.yaml @@ -682,6 +682,13 @@ actions: # Fix ping setcap cap_net_raw=ep /usr/bin/ping || chmod +s /usr/bin/ping +- trigger: post-packages + action: |- + #!/bin/sh + systemctl disable systemd-nsresourced + types: + - container + - trigger: post-packages action: |- #!/bin/sh From 3e9401e13671c6f98a8b444e3e6a253f0d9ca112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Wed, 26 Jun 2024 15:37:44 -0400 Subject: [PATCH 2/2] archlinux: More aggressively disable nsresourced MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber (cherry picked from commit fcfd6ee3eff04c120d92c6e336cf95afb97b34af) Signed-off-by: Simon Deziel --- images/archlinux.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/archlinux.yaml b/images/archlinux.yaml index 252764284..64a501959 100644 --- a/images/archlinux.yaml +++ b/images/archlinux.yaml @@ -685,7 +685,7 @@ actions: - trigger: post-packages action: |- #!/bin/sh - systemctl disable systemd-nsresourced + systemctl mask systemd-nsresourced.service systemd-nsresourced.socket types: - container