aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-25 12:47:17 +0000
committerMichael Scherer <misc@mageia.org>2012-03-25 12:47:17 +0000
commite8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f (patch)
treea591c18ee460f34fc9740385521db84aba53a92a /modules/apache
parentc955e02a3b930b81092d182633b7830735211250 (diff)
downloadpuppet-e8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f.tar
puppet-e8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f.tar.gz
puppet-e8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f.tar.bz2
puppet-e8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f.tar.xz
puppet-e8a1c18d0fadfbfef7e5ddcd8eab19bfab031f8f.zip
split apache::vhost_base in apache::vhost::base ( in a subdirecotry, to not have too much file on manifests/
Diffstat (limited to 'modules/apache')
-rw-r--r--modules/apache/manifests/init.pp64
-rw-r--r--modules/apache/manifests/vhost/base.pp50
2 files changed, 57 insertions, 57 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index e1e7d85b..1662eadf 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -1,56 +1,6 @@
class apache {
- define vhost_base($content = '',
- $location = '/dev/null',
- $use_ssl = false,
- $vhost = false,
- $aliases = {},
- $server_aliases = [],
- $access_logfile = false,
- $error_logfile = false,
- $options = [],
- $enable_public_html = false) {
- include apache::base
- $httpd_logdir = "/var/log/httpd"
- $filename = "$name.conf"
-
- if ! $vhost {
- $real_vhost = $name
- } else {
- $real_vhost = $vhost
- }
-
- if ! $access_logfile {
- $real_access_logfile = "$httpd_logdir/${real_vhost}-access_log"
- } else {
- $real_access_logfile = $access_logfile
- }
- if ! $error_logfile {
- $real_error_logfile = "$httpd_logdir/${real_vhost}-error_log"
- } else {
- $real_error_logfile = $error_logfile
- }
-
- if $use_ssl {
- include apache::mod::ssl
- if $wildcard_sslcert != 'true' {
- openssl::self_signed_cert{ "$real_vhost":
- directory => "/etc/ssl/apache/",
- before => Apache::Config["/etc/httpd/conf/vhosts.d/$filename"],
- }
- }
- }
-
- if $enable_public_html {
- include apache::mod::public_html
- }
-
- apache::config { "/etc/httpd/conf/vhosts.d/$filename":
- content => template("apache/vhost_base.conf")
- }
- }
-
define vhost_redirect_ssl() {
- vhost_base { "redirect_ssl_$name":
+ apache::vhost::base { "redirect_ssl_$name":
vhost => $name,
content => template("apache/vhost_ssl_redirect.conf")
}
@@ -59,7 +9,7 @@ class apache {
define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false, $vhost = false) {
include apache::mod::fastcgi
- vhost_base { $name:
+ apache::vhost::base { $name:
vhost => $vhost,
use_ssl => $use_ssl,
content => template("apache/vhost_catalyst_app.conf"),
@@ -68,7 +18,7 @@ class apache {
define vhost_django_app($module = false, $module_path = false, $use_ssl = false, $aliases= {}) {
include apache::mod::wsgi
- vhost_base { $name:
+ apache::vhost::base { $name:
use_ssl => $use_ssl,
content => template("apache/vhost_django_app.conf"),
aliases => $aliases,
@@ -86,7 +36,7 @@ class apache {
define vhost_wsgi($wsgi_path, $aliases = {}, $server_aliases = []) {
include apache::mod::wsgi
- vhost_base { $name:
+ apache::vhost::base { $name:
aliases => $aliases,
server_aliases => $server_aliases,
content => template("apache/vhost_wsgi.conf"),
@@ -102,7 +52,7 @@ class apache {
define vhost_simple($location) {
include apache::base
- vhost_base { $name:
+ apache::vhost::base { $name:
location => $location,
}
}
@@ -111,7 +61,7 @@ class apache {
$vhost = false,
$use_ssl = false) {
include apache::base
- vhost_base { $name:
+ apache::vhost::base { $name:
use_ssl => $use_ssl,
vhost => $vhost,
content => template("apache/vhost_redirect.conf"),
@@ -122,7 +72,7 @@ class apache {
$vhost = false,
$use_ssl = false) {
include apache::mod::proxy
- vhost_base { $name:
+ apache::vhost::base { $name:
use_ssl => $use_ssl,
vhost => $vhost,
content => template("apache/vhost_reverse_proxy.conf")
diff --git a/modules/apache/manifests/vhost/base.pp b/modules/apache/manifests/vhost/base.pp
new file mode 100644
index 00000000..c4bd1f91
--- /dev/null
+++ b/modules/apache/manifests/vhost/base.pp
@@ -0,0 +1,50 @@
+define apache::vhost::base ($content = '',
+ $location = '/dev/null',
+ $use_ssl = false,
+ $vhost = false,
+ $aliases = {},
+ $server_aliases = [],
+ $access_logfile = false,
+ $error_logfile = false,
+ $options = [],
+ $enable_public_html = false) {
+ include apache::base
+ $httpd_logdir = '/var/log/httpd'
+ $filename = "$name.conf"
+
+ if ! $vhost {
+ $real_vhost = $name
+ } else {
+ $real_vhost = $vhost
+ }
+
+ if ! $access_logfile {
+ $real_access_logfile = "$httpd_logdir/${real_vhost}-access_log"
+ } else {
+ $real_access_logfile = $access_logfile
+ }
+ if ! $error_logfile {
+ $real_error_logfile = "$httpd_logdir/${real_vhost}-error_log"
+ } else {
+ $real_error_logfile = $error_logfile
+ }
+
+ if $use_ssl {
+ include apache::mod::ssl
+ if $wildcard_sslcert != true {
+ openssl::self_signed_cert{ $real_vhost:
+ directory => '/etc/ssl/apache/',
+ before => Apache::Config["/etc/httpd/conf/vhosts.d/$filename"],
+ }
+ }
+ }
+
+ if $enable_public_html {
+ include apache::mod::public_html
+ }
+
+ apache::config { "/etc/httpd/conf/vhosts.d/$filename":
+ content => template('apache/vhost_base.conf')
+ }
+ }
+}