diff options
-rw-r--r-- | manifests/certmonger/haproxy.pp | 5 | ||||
-rw-r--r-- | metadata.json | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/manifests/certmonger/haproxy.pp b/manifests/certmonger/haproxy.pp index 97efe59..cff9f34 100644 --- a/manifests/certmonger/haproxy.pp +++ b/manifests/certmonger/haproxy.pp @@ -63,8 +63,9 @@ define tripleo::certmonger::haproxy ( # This is only needed for certmonger's local CA. For any other CA this # operation (trusting the CA) should be done by the deployer. if $certmonger_ca == 'local' { - class { '::tripleo::certmonger::ca::local': - notify => Class['::tripleo::haproxy'] + include ::tripleo::certmonger::ca::local + if defined(Class['::haproxy']) { + Class['::tripleo::certmonger::ca::local'] ~> Class['::haproxy'] } } diff --git a/metadata.json b/metadata.json index 61d0f57..36759b2 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "openstack-tripleo", - "version": "7.4.3", + "version": "7.4.4", "author": "OpenStack Contributors", "summary": "Puppet module for TripleO", "license": "Apache-2.0", |