
Currently we always use IPv4 for MySQL even in the test cases which are supposed to use IPv6. This fixes that and ensures the expected ip version is used. Change-Id: I483f04376f29b75dcca20061ae381c7e71f26caf
14 lines
241 B
Puppet
14 lines
241 B
Puppet
class openstack_integration::mysql {
|
|
|
|
include openstack_integration::config
|
|
|
|
class { 'mysql::server':
|
|
override_options => {
|
|
'mysqld' => {
|
|
'bind-address' => $::openstack_integration::config::host,
|
|
},
|
|
},
|
|
}
|
|
|
|
}
|