From e7f3f88aa5dda6e3206e7bade858f95a573dce77 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman Date: Mon, 22 Jul 2024 18:29:34 -0300 Subject: [PATCH] Disable podman log. --- utils/shcontainer | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/shcontainer b/utils/shcontainer index b1c5683088..eff5134f6e 100644 --- a/utils/shcontainer +++ b/utils/shcontainer @@ -35,6 +35,8 @@ prepare_container() { log info "Creating container..." CONFIG="--systemd true --hostname ${hostname} --memory ${MEMORY}g --memory-swap -1 --no-hosts" [ -n "${scenario}" ] && CONFIG="${CONFIG} --name ${scenario}" + # Disable log due to huge object handling in ansible-freeipa + CONFIG="$CONFIG --log-driver=none" # shellcheck disable=SC2086 container_id=$(${engine} create ${CONFIG} "${img_id}" || die "Cannot create container") log none "CONTAINER: ${container_id}"