Other puppet modules beaker test failed

Other puppet modules beaker test failed because ssl is true in
config.pp[0].

http://logs.openstack.org/29/503929/1/check/gate-puppet-panko-puppet-beaker-rspec-centos-7/6bf04c8/console.html#_2017-09-21_03_44_30_275738

Change-Id: I2be2f83ff83be11514fe1fa848c7d11c62a56c11
Closes-Bug: #1718600
This commit is contained in:
ZhongShengping 2017-09-21 16:05:55 +08:00 committed by Mohammed Naser
parent 812f6b5b23
commit 381e6fa7cd
No known key found for this signature in database
GPG Key ID: 481CBC90384AEC42
4 changed files with 5 additions and 2 deletions

View File

@ -38,6 +38,7 @@ case $::osfamily {
include ::openstack_integration
class { '::openstack_integration::config':
ssl => true,
ipv6 => $ipv6,
rpc_backend => $om_rpc,
notify_backend => $om_notify,

View File

@ -47,6 +47,7 @@ if ($::operatingsystem == 'Ubuntu') and (versioncmp($::operatingsystemmajrelease
include ::openstack_integration
class { '::openstack_integration::config':
ssl => true,
ipv6 => $ipv6,
}
include ::openstack_integration::cacert

View File

@ -29,6 +29,7 @@ if $::operatingsystem == 'Ubuntu' {
include ::openstack_integration
class { '::openstack_integration::config':
ssl => true,
ipv6 => $ipv6,
}

View File

@ -2,7 +2,7 @@
#
# [*ssl*]
# (optional) Boolean to enable or not SSL.
# Defaults to true.
# Defaults to false.
#
# [*ipv6*]
# (optional) Boolean to enable or not IPv6.
@ -18,7 +18,7 @@
# Defaults to 'rabbit'.
#
class openstack_integration::config (
$ssl = true,
$ssl = false,
$ipv6 = false,
$rpc_backend = 'rabbit',
$notify_backend = 'rabbit',