Check for valid network before probe-create call
Check that a public and/or private network exists before calling probe-create for it, to avoid an error in the case where that network hasn't been created Change-Id: If01cec47dc4ab02b5d78074b1354df10dc23b384 Closes-bug: #1560629
This commit is contained in:
parent
0a2a7ae847
commit
629917a5dd
@ -1453,9 +1453,13 @@ function delete_probe {
|
|||||||
function setup_neutron_debug {
|
function setup_neutron_debug {
|
||||||
if [[ "$Q_USE_DEBUG_COMMAND" == "True" ]]; then
|
if [[ "$Q_USE_DEBUG_COMMAND" == "True" ]]; then
|
||||||
public_net_id=`_get_net_id $PUBLIC_NETWORK_NAME`
|
public_net_id=`_get_net_id $PUBLIC_NETWORK_NAME`
|
||||||
neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $public_net_id
|
if [[ -n $public_net_id ]]; then
|
||||||
|
neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $public_net_id
|
||||||
|
fi
|
||||||
private_net_id=`_get_net_id $PRIVATE_NETWORK_NAME`
|
private_net_id=`_get_net_id $PRIVATE_NETWORK_NAME`
|
||||||
neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $private_net_id
|
if [[ -n $private_net_id ]]; then
|
||||||
|
neutron-debug --os-tenant-name admin --os-username admin --os-password $ADMIN_PASSWORD probe-create --device-owner compute $private_net_id
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user