aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2010-12-15 01:39:27 +0000
committerMichael Scherer <misc@mageia.org>2010-12-15 01:39:27 +0000
commit6c0bc81bed7043b88eb613f7218f447cd027585f (patch)
tree413646d8d1a5e2fac4b8f4826233cb3e6b6ac172 /modules/apache/manifests/init.pp
parent0a11b000f7319cc4c4dc48682d413ddd563c90af (diff)
downloadpuppet-6c0bc81bed7043b88eb613f7218f447cd027585f.tar
puppet-6c0bc81bed7043b88eb613f7218f447cd027585f.tar.gz
puppet-6c0bc81bed7043b88eb613f7218f447cd027585f.tar.bz2
puppet-6c0bc81bed7043b88eb613f7218f447cd027585f.tar.xz
puppet-6c0bc81bed7043b88eb613f7218f447cd027585f.zip
do not use a variable called module in template, this is a reserved ruby keyword
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index 04ca16e1..a46a0974 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -119,6 +119,8 @@ class apache {
define vhost_django_app($module, $module_path = '/usr/share') {
include apache::mod_wsgi
+ # module is a ruby reserved keyword, cannot be used in templates
+ $django_module = $module
file { "$name.conf":
path => "/etc/httpd/conf/vhosts.d/$name.conf",
ensure => "present",