Update configure-helper.sh

This commit is contained in:
vteratipally 2021-08-04 14:36:16 -07:00 committed by GitHub
parent b0039559dd
commit 5d84ffa6c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1509,9 +1509,9 @@ function set_docker_options_non_ubuntu() {
echo "setting live restore" echo "setting live restore"
# Disable live-restore if the environment variable is set. # Disable live-restore if the environment variable is set.
if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then if [[ "${DISABLE_DOCKER_LIVE_RESTORE:-false}" == "true" ]]; then
addockeropt "\"live-restore\": \"false\"," addockeropt "\"live-restore\": false,"
else else
addockeropt "\"live-restore\": \"true\"," addockeropt "\"live-restore\": true,"
fi fi
} }