2014-08-04 13:06:07 +02:00
|
|
|
# This validates a database connection. See README.md for more details.
|
2014-10-07 16:06:54 +02:00
|
|
|
class puppetdb::server::validate_read_db (
|
2014-08-04 13:06:07 +02:00
|
|
|
$database = $puppetdb::params::database,
|
|
|
|
$database_host = $puppetdb::params::database_host,
|
|
|
|
$database_port = $puppetdb::params::database_port,
|
|
|
|
$database_username = $puppetdb::params::database_username,
|
|
|
|
$database_password = $puppetdb::params::database_password,
|
|
|
|
$database_name = $puppetdb::params::database_name,
|
2014-10-07 16:06:54 +02:00
|
|
|
$database_ssl = $puppetdb::params::database_ssl,
|
2014-08-04 13:06:07 +02:00
|
|
|
) inherits puppetdb::params {
|
|
|
|
|
|
|
|
# Currently we only support postgres
|
2014-10-07 16:06:54 +02:00
|
|
|
if (
|
|
|
|
$database == 'postgres' and
|
|
|
|
($database_password != undef and $database_ssl == false)
|
2014-08-04 13:06:07 +02:00
|
|
|
) {
|
|
|
|
postgresql::validate_db_connection { 'validate puppetdb postgres (read) connection':
|
|
|
|
database_host => $database_host,
|
|
|
|
database_port => $database_port,
|
|
|
|
database_username => $database_username,
|
|
|
|
database_password => $database_password,
|
|
|
|
database_name => $database_name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|