Skip to content

Commit

Permalink
Disable podman log.
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed Jul 22, 2024
1 parent c5aba73 commit e7f3f88
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils/shcontainer
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit e7f3f88

Please sign in to comment.