From 41cb5de32051b9c9ca4b1e4a39fbd6514aa07353 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 23 Feb 2023 09:22:19 +0100 Subject: [PATCH] Add create podman network for system missing it. We saw that on a Fedora 33 with Podman 3.3.1, an old system. I didn't find in which release the default network changed and maybe it's defined in the Linux distribution. So in doubt I always attempt to create the network. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8d7596a..bc8b493 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,8 @@ test-integration: echo -n $(connector) > tests/integration/connector echo -n $(python) > tests/integration/python echo -n $(ansible) > tests/integration/ansible + # Create podman network for systems missing it. Error can be ignored + podman network create podman || true podman run \ --detach \ --name primary \