diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-04-27 09:56:13 +0300 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-04-27 09:56:13 +0300 |
commit | b2aad9c14c4b95ce6df2262a2151586993322d4a (patch) | |
tree | 389a3982c916a2b1c9ee82c6966fd0a83b5c4f5b /manifests | |
parent | baecff6c3ca47400ace7fb6ef5a83cd0a206041a (diff) |
Include base apache module in tls_proxy resource
Other services include it by using the vhost resource from openstacklib.
If we include a service (such as swift-proxy) that uses the tls_proxy
resource, and we do so in a separate node or in its own container, it
will fail since the base apache module hadn't been included.
Change-Id: I0167e08b0b652618d8a1af792376bcf02c8fcd82
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/tls_proxy.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/tls_proxy.pp b/manifests/tls_proxy.pp index 36d6b6d..607e20f 100644 --- a/manifests/tls_proxy.pp +++ b/manifests/tls_proxy.pp @@ -40,6 +40,7 @@ define tripleo::tls_proxy( $tls_cert, $tls_key, ) { + include ::apache ::apache::vhost { "${title}-proxy": ensure => 'present', docroot => undef, # This is required by the manifest |