Add missing vhost_name

Add a missing parameter into apache inclusion,
that was causing vhost_name to don't be passed properly
and generating the vhost incorrectly.

Change-Id: Ia39c005fffb82b5f1d75ac704cf24a1a2a978d6d
This commit is contained in:
Yolanda Robla 2015-04-23 07:22:12 +01:00
parent 41318c5a84
commit 9d3ba41410
1 changed files with 5 additions and 4 deletions

View File

@ -93,9 +93,10 @@ class logstash::web (
}
apache::vhost { $vhost_name:
port => 80,
docroot => 'MEANINGLESS ARGUMENT',
priority => '50',
template => $vhost,
port => 80,
docroot => 'MEANINGLESS ARGUMENT',
priority => '50',
template => $vhost,
vhost_name => $vhost_name,
}
}