diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-22 02:16:13 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-22 02:16:13 +0000 |
commit | dc894a7c5f155ed90398fba039e0e0e95d414ec4 (patch) | |
tree | 6476b5cdf065eda20d3b8551a3f722b2965c6b6f | |
parent | ac439e63aac5eabe61b5e84a608a420312389f54 (diff) | |
download | puppet-dc894a7c5f155ed90398fba039e0e0e95d414ec4.tar puppet-dc894a7c5f155ed90398fba039e0e0e95d414ec4.tar.gz puppet-dc894a7c5f155ed90398fba039e0e0e95d414ec4.tar.bz2 puppet-dc894a7c5f155ed90398fba039e0e0e95d414ec4.tar.xz puppet-dc894a7c5f155ed90398fba039e0e0e95d414ec4.zip |
- use the real name of the vhost for the ssl certificate
-rw-r--r-- | modules/apache/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index f0860735..d4038afe 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -129,7 +129,7 @@ class apache { if $use_ssl { include apache::mod_ssl - openssl::self_signed_cert{ "$name": + openssl::self_signed_cert{ "$real_vhost": directory => "/etc/ssl/apache/", before => File["$filename"], } |