From c04c95540712ed49593188bf1a2c22a35928dbf7 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 15 Nov 2023 09:28:58 +0100 Subject: [PATCH] nm-in-container: fix mount command in "_nm-in-container-setup.sh" On Fedora 39, mount now requires the dummy device argument. It was wrong to omit it, altough it worked previously. Fix the mount command line. --- tools/nm-guest-data/bin-_nm-in-container-setup.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nm-guest-data/bin-_nm-in-container-setup.sh.in b/tools/nm-guest-data/bin-_nm-in-container-setup.sh.in index 7f7d253304..837daf770e 100644 --- a/tools/nm-guest-data/bin-_nm-in-container-setup.sh.in +++ b/tools/nm-guest-data/bin-_nm-in-container-setup.sh.in @@ -9,5 +9,5 @@ if [ ! -d /tmp/sys2 ]; then # Let's do this setup step once, and never clean it up. # https://github.com/containers/podman/issues/11887#issuecomment-938706628 mkdir /tmp/sys2 - mount -t sysfs --make-private /tmp/sys2 + mount -t sysfs --make-private sysfs /tmp/sys2 fi