Skip to content
Snippets Groups Projects
Unverified Commit 329c16f7 authored by Thomas Woerner's avatar Thomas Woerner Committed by GitHub
Browse files

Merge pull request #1355 from freeipa/fix_container_tee_message

infra/image/shcontainer: Fix log message in container_tee
parents f04c90f4 66c0be06
No related branches found
No related tags found
No related merge requests found
...@@ -204,8 +204,8 @@ container_tee() { ...@@ -204,8 +204,8 @@ container_tee() {
local destination=${2} local destination=${2}
tmpfile=$(mktemp /tmp/container-temp.XXXXXX) tmpfile=$(mktemp /tmp/container-temp.XXXXXX)
log info "= Creating ${name}:${filename} from stdin =" log info "= Creating ${name}:${destination} from stdin ="
cat - > ${tmpfile} cat - > "${tmpfile}"
podman cp "${tmpfile}" "${name}:${destination}" podman cp "${tmpfile}" "${name}:${destination}"
rm "${tmpfile}" rm "${tmpfile}"
echo echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment