Merge "Allow configuring vhost parameter on paste"

This commit is contained in:
Jenkins 2015-06-15 17:40:46 +00:00 committed by Gerrit Code Review
commit 981863b052

View File

@ -3,12 +3,15 @@
class openstack_project::paste (
$db_password,
$mysql_root_password,
$vhost_name = $::fqdn,
) {
include lodgeit
lodgeit::site { 'openstack':
db_host => 'localhost',
db_password => $db_password,
port => '5000',
db_password => $db_password,
db_host => 'localhost',
db_user => 'openstack',
vhost_name => $vhost_name,
image => 'header-bg2.png',
require => Mysql::Db['openstack'],
}