diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-17 13:07:08 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-17 13:07:08 -0300 |
commit | f77b2e8a2950345f04cb139831a800965b6bd29b (patch) | |
tree | d27f58cf662ee518be8f57959767b53f06d97790 /manifests | |
parent | 3e438b927c091187971e78a9c6dc151f76f2c4ed (diff) | |
download | puppet-apache-f77b2e8a2950345f04cb139831a800965b6bd29b.tar.gz puppet-apache-f77b2e8a2950345f04cb139831a800965b6bd29b.tar.bz2 |
Fix template names
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index b144191..f63103c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -114,7 +114,7 @@ class apache( # apache mod_macro configuration file { "${conf}": ensure => present, - content => template("apache/apache2.conf.erb.${::lsbdistcodename}"), + content => template("apache/apache2.conf.${::lsbdistcodename}.erb"), owner => root, group => root, mode => 0644, |