MySQL database cleanup for paste.o.o

Now that paste.openstack.org is using a local MySQL database,
unnecessary parameters are removed from the manifests. This should
only be approved after the maintenance to start using the local
database has concluded.

Change-Id: Icc63a6a08e3ee36fbc6fde207542b9e3647fb4cf
This commit is contained in:
Jeremy Stanley 2015-01-08 16:57:54 +00:00
parent b7e352cc86
commit 8cad8d737f
2 changed files with 1 additions and 3 deletions

View File

@ -247,7 +247,6 @@ node 'lists.openstack.org' {
# Node-OS: precise
node 'paste.openstack.org' {
class { 'openstack_project::paste':
db_host => hiera('paste_db_host', 'localhost'),
db_password => hiera('paste_db_password', 'XXX'),
mysql_root_password => hiera('paste_mysql_root_password', 'XXX'),
sysadmins => hiera('sysadmins', []),

View File

@ -1,7 +1,6 @@
# == Class: openstack_project::paste
#
class openstack_project::paste (
$db_host,
$db_password,
$mysql_root_password,
$sysadmins = []
@ -12,7 +11,7 @@ class openstack_project::paste (
}
include lodgeit
lodgeit::site { 'openstack':
db_host => $db_host,
db_host => 'localhost',
db_password => $db_password,
port => '5000',
image => 'header-bg2.png',