62eb545ad9
Create manifests for each project and include them in the right fixtures manifests, so we can reduce the code and avoid dupplicated puppet manifests. Change-Id: I66a98691b3014998f4c2529d2e3389ef1cbcc5f4
15 lines
422 B
Puppet
15 lines
422 B
Puppet
class openstack_integration::horizon {
|
|
|
|
$vhost_params = { add_listen => false }
|
|
class { '::horizon':
|
|
secret_key => 'big_secret',
|
|
vhost_extra_params => $vhost_params,
|
|
servername => $::hostname,
|
|
allowed_hosts => $::hostname,
|
|
# need to disable offline compression due to
|
|
# https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1424042
|
|
compress_offline => false,
|
|
}
|
|
|
|
}
|