summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2024-06-14 16:59:19 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2024-08-29 05:49:57 +0000
commit60d213a1837893c376e8af35e8b4066328747ab0 (patch)
treed4184230324af1975df0051f9a88c2eaa978c761
parentInstalling systemd unit files in /usr, thanks to Helmut Grohne <helmut@subdiv... (diff)
downloadcompute-tools-60d213a1837893c376e8af35e8b4066328747ab0.tar.xz
compute-tools-60d213a1837893c376e8af35e8b4066328747ab0.zip
Avoid failing on networkctl reload with systemd >= 256 in container-start command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-xlibexec/container/start2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/container/start b/libexec/container/start
index 1f22325..128c418 100755
--- a/libexec/container/start
+++ b/libexec/container/start
@@ -422,7 +422,7 @@ Name=${INTERFACE}
Bridge=${BRIDGE}
EOF
- networkctl reload
+ networkctl reload || true
;;
esac
else