Merge "xenapi: enable user to specify FLAT_NETWORK_BRIDGE"
This commit is contained in:
commit
dbb5b6cd8c
@ -137,14 +137,14 @@ function _network_exists() {
|
|||||||
local name_label
|
local name_label
|
||||||
name_label=$1
|
name_label=$1
|
||||||
|
|
||||||
! [ -z $(xe network-list name-label="$name_label" --minimal) ]
|
! [ -z "$(xe network-list name-label="$name_label" --minimal)" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
function _bridge_exists() {
|
function _bridge_exists() {
|
||||||
local bridge
|
local bridge
|
||||||
bridge=$1
|
bridge=$1
|
||||||
|
|
||||||
! [ -z $(xe network-list bridge="$bridge" --minimal) ]
|
! [ -z "$(xe network-list bridge="$bridge" --minimal)" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
function _network_uuid() {
|
function _network_uuid() {
|
||||||
|
@ -111,12 +111,15 @@ if is_service_enabled neutron; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if parameter_is_specified "FLAT_NETWORK_BRIDGE"; then
|
if parameter_is_specified "FLAT_NETWORK_BRIDGE"; then
|
||||||
cat >&2 << EOF
|
if [ "$(bridge_for "$VM_BRIDGE_OR_NET_NAME")" != "$(bridge_for "$FLAT_NETWORK_BRIDGE")" ]; then
|
||||||
ERROR: FLAT_NETWORK_BRIDGE is specified in localrc file
|
cat >&2 << EOF
|
||||||
This is considered as an error, as its value will be derived from the
|
ERROR: FLAT_NETWORK_BRIDGE is specified in localrc file, and either no network
|
||||||
VM_BRIDGE_OR_NET_NAME variable's value.
|
found on XenServer by searching for networks by that value as name-label or
|
||||||
|
bridge name or the network found does not match the network specified by
|
||||||
|
VM_BRIDGE_OR_NET_NAME. Please check your localrc file.
|
||||||
EOF
|
EOF
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! xenapi_is_listening_on "$MGT_BRIDGE_OR_NET_NAME"; then
|
if ! xenapi_is_listening_on "$MGT_BRIDGE_OR_NET_NAME"; then
|
||||||
@ -310,7 +313,7 @@ if is_service_enabled neutron; then
|
|||||||
"xen_integration_bridge=${XEN_INTEGRATION_BRIDGE}"
|
"xen_integration_bridge=${XEN_INTEGRATION_BRIDGE}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
FLAT_NETWORK_BRIDGE=$(bridge_for "$VM_BRIDGE_OR_NET_NAME")
|
FLAT_NETWORK_BRIDGE="${FLAT_NETWORK_BRIDGE:-$(bridge_for "$VM_BRIDGE_OR_NET_NAME")}"
|
||||||
append_kernel_cmdline "$GUEST_NAME" "flat_network_bridge=${FLAT_NETWORK_BRIDGE}"
|
append_kernel_cmdline "$GUEST_NAME" "flat_network_bridge=${FLAT_NETWORK_BRIDGE}"
|
||||||
|
|
||||||
# Add a separate xvdb, if it was requested
|
# Add a separate xvdb, if it was requested
|
||||||
|
Loading…
Reference in New Issue
Block a user