4d0cea3403
Remove the local database management on paste.openstack.org now that it's back to running with a remote Trove database again. This reverts commit b7e352cc86bb850fa1c4d6b74253e5450165afa2. Change-Id: I7b8513b427395f610b23e3f226109ea954ee210b
18 lines
382 B
Puppet
18 lines
382 B
Puppet
# == Class: openstack_project::paste
|
|
#
|
|
class openstack_project::paste (
|
|
$db_password,
|
|
$db_host,
|
|
$vhost_name = $::fqdn,
|
|
) {
|
|
include lodgeit
|
|
lodgeit::site { 'openstack':
|
|
port => '5000',
|
|
db_password => $db_password,
|
|
db_host => $db_host,
|
|
db_user => 'openstack',
|
|
vhost_name => $vhost_name,
|
|
image => 'header-bg2.png',
|
|
}
|
|
}
|