Skip to content
Snippets Groups Projects
Commit 989343d6 authored by Simon McVittie's avatar Simon McVittie
Browse files

_v2-entry-point: Don't terminate container if it never started


This creates a lot of noise on stderr if we're in verbose mode, but is
not actually useful. By silencing it, we can have the actual problem
appear more prominently.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent ec6dc4ea
No related branches found
No related tags found
No related merge requests found
......@@ -258,6 +258,11 @@ else
fi
terminate_container () {
if ! [ -S "$rendezvous/socket" ]; then
# nothing to do
return
fi
"$pressure_vessel/bin/pressure-vessel-adverb" \
--create \
--wait \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment