Skip to content
Snippets Groups Projects
Commit 314b5026 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Skip extend_start.sh if KOLLA_SKIP_EXTEND_START is defined"

parents 6b4e726b 2597bf8c
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,10 @@ sudo -E kolla_set_configs
CMD=$(cat /run_command)
ARGS=""
# Run additional commands if present
source kolla_extend_start
if [[ ! "${!KOLLA_SKIP_EXTEND_START[@]}" ]]; then
# Run additional commands if present
source kolla_extend_start
fi
echo "Running command: '${CMD}${ARGS:+ $ARGS}'"
exec ${CMD} ${ARGS}
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