Also disable send_arp_for_ha when multi_host is false.
This commit is contained in:
@@ -98,8 +98,10 @@ class openstack::compute(
|
||||
|
||||
include keystone::python
|
||||
|
||||
nova_config { 'multi_host': value => 'True'; }
|
||||
nova_config { 'send_arp_for_ha': value => 'True'; }
|
||||
nova_config {
|
||||
'multi_host': value => 'True';
|
||||
'send_arp_for_ha': value => 'True';
|
||||
}
|
||||
if ! $public_interface {
|
||||
fail('public_interface must be defined for multi host compute nodes')
|
||||
}
|
||||
@@ -113,7 +115,8 @@ class openstack::compute(
|
||||
} else {
|
||||
$enable_network_service = false
|
||||
nova_config {
|
||||
'multi_host': value => 'False';
|
||||
'multi_host': value => 'False';
|
||||
'send_arp_for_ha': value => 'False';
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user