(lint) Fix a strange lint issue (indentation of => is not properly aligned)

This commit is contained in:
Sebastien Badia
2014-09-30 12:34:10 +02:00
parent c53d5b84ec
commit 4439a0e053
2 changed files with 8 additions and 2 deletions

View File

@@ -124,7 +124,9 @@ class cloud::dashboard(
keystone_url => $keystone_url,
cache_server_ip => false,
django_debug => $debug,
neutron_options => { 'enable_lb' => true },
neutron_options => {
'enable_lb' => true
},
listen_ssl => $listen_ssl,
horizon_cert => $horizon_cert,
horizon_key => $horizon_key,

View File

@@ -267,7 +267,11 @@ class cloud::database::sql (
config_file => $mysql_server_config_file,
package_name => $mysql_server_package_name,
service_name => $mysql_service_name,
override_options => { 'mysqld' => { 'bind-address' => $api_eth } },
override_options => {
'mysqld' => {
'bind-address' => $api_eth
}
},
root_password => $mysql_root_password_real,
notify => Service['xinetd'],
}