From ba0c921368609f4716d40b632b9d945ff1aca7f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Gagne=CC=81?= Date: Sun, 22 Dec 2013 01:12:54 -0500 Subject: [PATCH] Add missing mysql_root_password to tests/site.pp Example was missing required parameter mysql_root_password. Change-Id: I6a6b6e712ccab0057a668f2a3ee007f4483b9d76 Closes-bug: #1263292 --- tests/site.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/site.pp b/tests/site.pp index 7ad3232..bcaae05 100644 --- a/tests/site.pp +++ b/tests/site.pp @@ -35,6 +35,7 @@ $rabbit_user = 'openstack_rabbit_user' $fixed_network_range = '10.0.0.0/24' $floating_network_range = '192.168.101.64/28' $secret_key = 'secret_key' +$mysql_root_password = 'secret' # switch this to true to have all service log at verbose $verbose = false # by default it does not enable atomatically adding floating IPs @@ -72,6 +73,7 @@ node /openstack_all/ { auto_assign_floating_ip => $auto_assign_floating_ip, secret_key => $secret_key, neutron => false, + mysql_root_password => $mysql_root_password, } class { 'openstack::auth_file':