Add missing mysql_root_password to tests/site.pp

Example was missing required parameter mysql_root_password.

Change-Id: I6a6b6e712ccab0057a668f2a3ee007f4483b9d76
Closes-bug: #1263292
This commit is contained in:
Mathieu Gagné 2013-12-22 01:12:54 -05:00
parent 4b9e74a7a2
commit ba0c921368
1 changed files with 2 additions and 0 deletions

View File

@ -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':