From 4439a0e053c60ba10f26cea814db8c78b4dcd8a5 Mon Sep 17 00:00:00 2001 From: Sebastien Badia Date: Tue, 30 Sep 2014 12:34:10 +0200 Subject: [PATCH] (lint) Fix a strange lint issue (indentation of => is not properly aligned) --- manifests/dashboard.pp | 4 +++- manifests/database/sql.pp | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/manifests/dashboard.pp b/manifests/dashboard.pp index ec25c3a0..81e8abb1 100644 --- a/manifests/dashboard.pp +++ b/manifests/dashboard.pp @@ -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, diff --git a/manifests/database/sql.pp b/manifests/database/sql.pp index cef86aa1..940ac37d 100644 --- a/manifests/database/sql.pp +++ b/manifests/database/sql.pp @@ -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'], }