Merge "Allow to override external network params in init-runonce"

This commit is contained in:
Zuul 2020-02-25 09:14:27 +00:00 committed by Gerrit Code Review
commit 24d466a9ed

@ -16,9 +16,9 @@ IMAGE_TYPE=linux
# This EXT_NET_CIDR is your public network,that you want to connect to the internet via. # This EXT_NET_CIDR is your public network,that you want to connect to the internet via.
ENABLE_EXT_NET=${ENABLE_EXT_NET:-1} ENABLE_EXT_NET=${ENABLE_EXT_NET:-1}
EXT_NET_CIDR='10.0.2.0/24' EXT_NET_CIDR=${EXT_NET_CIDR:-'10.0.2.0/24'}
EXT_NET_RANGE='start=10.0.2.150,end=10.0.2.199' EXT_NET_RANGE=${EXT_NET_RANGE:-'start=10.0.2.150,end=10.0.2.199'}
EXT_NET_GATEWAY='10.0.2.1' EXT_NET_GATEWAY=${EXT_NET_GATEWAY:-'10.0.2.1'}
# Sanitize language settings to avoid commands bailing out # Sanitize language settings to avoid commands bailing out
# with "unsupported locale setting" errors. # with "unsupported locale setting" errors.