diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-23 17:59:25 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-23 17:59:25 +0000 |
commit | 32c5d54f5564375f1fa4061a4579d01566fb0687 (patch) | |
tree | 2e7c528055266bb5209a349177d5af85ccf35fe2 | |
parent | 438cf40b71c89450d822d7c16ac0b35ec44167af (diff) | |
download | puppet-32c5d54f5564375f1fa4061a4579d01566fb0687.tar puppet-32c5d54f5564375f1fa4061a4579d01566fb0687.tar.gz puppet-32c5d54f5564375f1fa4061a4579d01566fb0687.tar.bz2 puppet-32c5d54f5564375f1fa4061a4579d01566fb0687.tar.xz puppet-32c5d54f5564375f1fa4061a4579d01566fb0687.zip |
- oops, fix previous commit
-rw-r--r-- | modules/apache/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 7eec1767..5287eb71 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -50,7 +50,7 @@ class apache { group => root, mode => 644, require => Package['apache-conf'], - content => template('apache/mod_php.conf') + content => template('apache/mod_php.conf'), notify => Service['apache'], } } @@ -101,7 +101,7 @@ class apache { group => root, mode => 644, require => Package['apache-conf'], - content => template('apache/mod_wsgi.conf') + content => template('apache/mod_wsgi.conf'), notify => Service['apache'], } |