Skip to content
Snippets Groups Projects
Commit a1c99ac8 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

_v2-entry-point: use the relaunch container option by default


The relaunch container option allows us to correctly handle the final
environment variables from the main program, because we don't know them
in advance, when we create the container for the setup steps.

The downside is a potentially increased startup time.

Until we enable this by default it would be very difficult to estimate
the real impact that this option could have on real world systems.

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 0e6df4c0
No related branches found
No related tags found
1 merge request!28_v2-entry-point: use the relaunch container option by default
Pipeline #7148 passed with warnings
......@@ -222,7 +222,8 @@ if [ -z "${STEAM_COMPAT_SESSION_ID-}" ]; then
is_main=yes
elif [ -n "$is_main" ]; then
info "Main program in session mode"
case "${PRESSURE_VESSEL_RELAUNCH_CONTAINER-0}" in
# Use the relaunch mode by default
case "${PRESSURE_VESSEL_RELAUNCH_CONTAINER-1}" in
(1)
relaunch=yes
;;
......
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