aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/apache/manifests/init.pp10
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index 58fd0b5d..9bbeaa6a 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -140,10 +140,12 @@ class apache {
if $use_ssl {
include apache::mod_ssl
- openssl::self_signed_cert{ "$real_vhost":
- directory => "/etc/ssl/apache/",
- before => File["$filename"],
- }
+ if ! $wildcard_sslcert {
+ openssl::self_signed_cert{ "$real_vhost":
+ directory => "/etc/ssl/apache/",
+ before => File["$filename"],
+ }
+ }
}
if $enable_public_html {