diff options
author | Olivier Blin <dev@blino.org> | 2015-11-22 02:09:53 +0100 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2015-11-30 01:32:43 +0100 |
commit | 4ad008a4880c770205d0ee9afdf6c522c284788a (patch) | |
tree | 1e0a3cde37b3d497f722e2a7d3fe550fd9ca07be /modules/apache/manifests/mod/ssl.pp | |
parent | 396da52d807c0e1d110ba60ba093d27c70234630 (diff) | |
download | puppet-4ad008a4880c770205d0ee9afdf6c522c284788a.tar puppet-4ad008a4880c770205d0ee9afdf6c522c284788a.tar.gz puppet-4ad008a4880c770205d0ee9afdf6c522c284788a.tar.bz2 puppet-4ad008a4880c770205d0ee9afdf6c522c284788a.tar.xz puppet-4ad008a4880c770205d0ee9afdf6c522c284788a.zip |
apache: use proper conf.d dir on Mageia >= 2
Diffstat (limited to 'modules/apache/manifests/mod/ssl.pp')
-rw-r--r-- | modules/apache/manifests/mod/ssl.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apache/manifests/mod/ssl.pp b/modules/apache/manifests/mod/ssl.pp index 9065c5cc..ab3d24e4 100644 --- a/modules/apache/manifests/mod/ssl.pp +++ b/modules/apache/manifests/mod/ssl.pp @@ -14,7 +14,7 @@ class apache::mod::ssl { apache::config { '/etc/httpd/conf/vhosts.d/01_default_ssl_vhost.conf': content => template('apache/01_default_ssl_vhost.conf'); - '/etc/httpd/conf.d/ssl_vhost.conf': + "${apache::base::conf_d}/ssl_vhost.conf": content => template('apache/mod/ssl_vhost.conf'); } } |