summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-07 19:27:05 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-07 19:27:05 -0200
commitcae28ffea81f002bd09dd596af221c18372daeef (patch)
tree48ce149718bbc873827f0c50f3966afaeeb8339e
parentb936755f402e7be72d00d5ccb618c222fbea23fc (diff)
downloadpuppet-apache-cae28ffea81f002bd09dd596af221c18372daeef.tar.gz
puppet-apache-cae28ffea81f002bd09dd596af221c18372daeef.tar.bz2
Adding $apache_use_domain (2)
-rw-r--r--manifests/init.pp5
-rw-r--r--templates/site.erb4
2 files changed, 4 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index edd84a8..cdd4d6e 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -92,9 +92,8 @@ class apache {
'': { $apache_error_dest = "${apache_error_folder}/index.html" }
}
- $use_domain = $apache_use_domain ? {
- '' => $domain,
- default => $apache_use_domain,
+ case $apache_use_domain {
+ '' { $apache_use_domain = $domain }
}
define site($ensure = present, $docroot = false, $redirect = false,
diff --git a/templates/site.erb b/templates/site.erb
index f75c81a..56cc929 100644
--- a/templates/site.erb
+++ b/templates/site.erb
@@ -1,9 +1,9 @@
# begin vhost for <%= title %>
<VirtualHost *:80>
- ServerName <%= title %>.<%= use_domain %>
+ ServerName <%= title %>.<%= apache_use_domain %>
<% if server_alias != false %> ServerAlias <%= server_alias %><% end %>
DocumentRoot <%= docroot %>
-<% if redirect_match != false %> RedirectMatch ^/$ <%= protocol %>://<%= title %>.<%= use_domain %>/<%= redirect_match %><% end %>
+<% if redirect_match != false %> RedirectMatch ^/$ <%= protocol %>://<%= title %>.<%= apache_use_domain %>/<%= redirect_match %><% end %>
<% if redirect != false %> Redirect <%= redirect %><% end %>
<% if use != false %><% use.each do |instance| -%>
Use <%= instance %>