
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I3109b052d5eb21f6f26174390a9d5bf2756c6ec2 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
48 lines
1.0 KiB
Puppet
48 lines
1.0 KiB
Puppet
# == Class: magnum::db::postgresql
|
|
#
|
|
# Class that configures postgresql for magnum
|
|
# Requires the Puppetlabs postgresql module.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# (Required) Password to connect to the database.
|
|
#
|
|
# [*dbname*]
|
|
# (Optional) Name of the database.
|
|
# Defaults to 'magnum'.
|
|
#
|
|
# [*user*]
|
|
# (Optional) User to connect to the database.
|
|
# Defaults to 'magnum'.
|
|
#
|
|
# [*encoding*]
|
|
# (Optional) The charset to use for the database.
|
|
# Default to undef.
|
|
#
|
|
# [*privileges*]
|
|
# (Optional) Privileges given to the database user.
|
|
# Default to 'ALL'
|
|
#
|
|
class magnum::db::postgresql (
|
|
$password,
|
|
$dbname = 'magnum',
|
|
$user = 'magnum',
|
|
$encoding = undef,
|
|
$privileges = 'ALL',
|
|
) {
|
|
include magnum::deps
|
|
|
|
openstacklib::db::postgresql { 'magnum':
|
|
password => $password,
|
|
dbname => $dbname,
|
|
user => $user,
|
|
encoding => $encoding,
|
|
privileges => $privileges,
|
|
}
|
|
|
|
Anchor['magnum::db::begin']
|
|
~> Class['magnum::db::postgresql']
|
|
~> Anchor['magnum::db::end']
|
|
}
|