Pass vhost_name in to apache::vhost

It turns out that the name parameter of the call does not set the
vhost_name variable.

Change-Id: If29750c98abfc292c659c3fdbd32a77c38ef9e1e
This commit is contained in:
Monty Taylor 2015-03-16 10:27:00 -04:00
parent 9b4a4cfcfe
commit 9903469495
1 changed files with 6 additions and 5 deletions

View File

@ -371,11 +371,12 @@ class zuul (
}
apache::vhost { $vhost_name:
port => 443, # Is required despite not being used.
docroot => 'MEANINGLESS ARGUMENT',
priority => '50',
ssl => $ssl,
template => 'zuul/zuul.vhost.erb',
port => 443, # Is required despite not being used.
docroot => 'MEANINGLESS ARGUMENT',
priority => '50',
ssl => $ssl,
template => 'zuul/zuul.vhost.erb',
vhost_name => $vhost_name,
}
if ! defined(A2mod['rewrite']) {
a2mod { 'rewrite':