aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-01-28 12:26:04 +0000
committerMichael Scherer <misc@mageia.org>2011-01-28 12:26:04 +0000
commit19553371bbdc91dbeb6ec2aeb1b2b329013da245 (patch)
treebb6ece758ddc0e1b220ac5ee6e359722352ea11a /modules/apache/manifests
parent726cfa66c8fe8d4b5c44821a51c23ed956fd23bc (diff)
downloadpuppet-19553371bbdc91dbeb6ec2aeb1b2b329013da245.tar
puppet-19553371bbdc91dbeb6ec2aeb1b2b329013da245.tar.gz
puppet-19553371bbdc91dbeb6ec2aeb1b2b329013da245.tar.bz2
puppet-19553371bbdc91dbeb6ec2aeb1b2b329013da245.tar.xz
puppet-19553371bbdc91dbeb6ec2aeb1b2b329013da245.zip
enable mod_wdgi hack to let viewvc write to stdout. Viewvc should be
fixed, and a bug report should be opened ( but for now, this is faster )
Diffstat (limited to 'modules/apache/manifests')
-rw-r--r--modules/apache/manifests/init.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index bcad0d24..8c6daa74 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -79,6 +79,15 @@ class apache {
group => root,
mode => 644,
}
+
+ file { "/etc/httpd/conf.d/mod_wsgi.conf":
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 644,
+ content => template('apache/mod_wsgi.conf')
+ }
+
}
class mod_proxy inherits base {