diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-07-24 13:35:56 +0300 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2017-07-26 03:58:59 +0000 |
commit | bf5eaa2fa243b9f3a1e329ea60ad23e12af41f1c (patch) | |
tree | 8f39853ea3f32ca833166b8171c5e2ccc7a6aa8f /manifests | |
parent | 1fd05b4a04cfc2e24b7551861c1ece483506102a (diff) |
Pass 'false' docroot to vhost for tls_proxy
passing undef causes a failure since due to a recent commit [1] the
resource now does proper validation of the parameters.
[1] https://github.com/puppetlabs/puppetlabs-apache/commit/d6952b21ec66d7ce8b69dd0c2f2a0debca54e18f
Change-Id: I6dc1e5820a1f4fe449d254d301738e1073f4b82b
Closes-Bug: #1706026
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/tls_proxy.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/tls_proxy.pp b/manifests/tls_proxy.pp index 607e20f..34cc731 100644 --- a/manifests/tls_proxy.pp +++ b/manifests/tls_proxy.pp @@ -43,7 +43,7 @@ define tripleo::tls_proxy( include ::apache ::apache::vhost { "${title}-proxy": ensure => 'present', - docroot => undef, # This is required by the manifest + docroot => false, # This is required by the manifest manage_docroot => false, servername => $servername, ip => $ip, |