aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-25 13:22:05 +0000
committerMichael Scherer <misc@mageia.org>2012-03-25 13:22:05 +0000
commit2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef (patch)
treeb37f3336e27162dfd05b6b502480ff2657e13c2c /modules/apache/manifests/init.pp
parent45cbc0000bbebd81c9946fbcc04371d85b0ca8fe (diff)
downloadpuppet-2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef.tar
puppet-2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef.tar.gz
puppet-2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef.tar.bz2
puppet-2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef.tar.xz
puppet-2f8b0454ea819d00579bb4b1b26de0b3bd5da7ef.zip
split 2 more vhost class
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index d97345e7..9318a51c 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -9,31 +9,6 @@ class apache {
}
}
- define vhost_django_app($module = false, $module_path = false, $use_ssl = false, $aliases= {}) {
- include apache::mod::wsgi
- apache::vhost::base { $name:
- use_ssl => $use_ssl,
- content => template("apache/vhost_django_app.conf"),
- aliases => $aliases,
- }
-
- # module is a ruby reserved keyword, cannot be used in templates
- $django_module = $module
- file { "$name.wsgi":
- path => "/usr/local/lib/wsgi/$name.wsgi",
- mode => 755,
- notify => Service['apache'],
- content => template("apache/django.wsgi"),
- }
- }
-
- define vhost_other_app($vhost_file) {
- include apache::base
- apache::config { "/etc/httpd/conf/vhosts.d/$name.conf":
- content => template($vhost_file),
- }
- }
-
define vhost_simple($location) {
include apache::base
apache::vhost::base { $name: