Skip to content

Commit ba0c921

Browse files
committed
Add missing mysql_root_password to tests/site.pp
Example was missing required parameter mysql_root_password. Change-Id: I6a6b6e712ccab0057a668f2a3ee007f4483b9d76 Closes-bug: #1263292
1 parent 4b9e74a commit ba0c921

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/site.pp

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
$fixed_network_range = '10.0.0.0/24'
3636
$floating_network_range = '192.168.101.64/28'
3737
$secret_key = 'secret_key'
38+
$mysql_root_password = 'secret'
3839
# switch this to true to have all service log at verbose
3940
$verbose = false
4041
# by default it does not enable atomatically adding floating IPs
@@ -72,6 +73,7 @@
7273
auto_assign_floating_ip => $auto_assign_floating_ip,
7374
secret_key => $secret_key,
7475
neutron => false,
76+
mysql_root_password => $mysql_root_password,
7577
}
7678

7779
class { 'openstack::auth_file':

0 commit comments

Comments
 (0)