290d711c45
This adds a dependency to ensure that the MySQL database is created before attempting to run the neutron db-sync. Change-Id: Ife7b6829f70d9fc9bd25419d45f45e86ff80b4fb
46 lines
1.1 KiB
Puppet
46 lines
1.1 KiB
Puppet
# == Class: neutron::db::postgresql
|
|
#
|
|
# Class that configures postgresql for neutron
|
|
# Requires the Puppetlabs postgresql module.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# (Required) Password to connect to the database.
|
|
#
|
|
# [*dbname*]
|
|
# (Optional) Name of the database.
|
|
# Defaults to 'neutron'.
|
|
#
|
|
# [*user*]
|
|
# (Optional) User to connect to the database.
|
|
# Defaults to 'neutron'.
|
|
#
|
|
# [*encoding*]
|
|
# (Optional) The charset to use for the database.
|
|
# Default to undef.
|
|
#
|
|
# [*privileges*]
|
|
# (Optional) Privileges given to the database user.
|
|
# Default to 'ALL'
|
|
#
|
|
class neutron::db::postgresql(
|
|
$password,
|
|
$dbname = 'neutron',
|
|
$user = 'neutron',
|
|
$encoding = undef,
|
|
$privileges = 'ALL',
|
|
) {
|
|
|
|
::openstacklib::db::postgresql { 'neutron':
|
|
password_hash => postgresql_password($user, $password),
|
|
dbname => $dbname,
|
|
user => $user,
|
|
encoding => $encoding,
|
|
privileges => $privileges,
|
|
}
|
|
|
|
::Openstacklib::Db::Postgresql['neutron'] ~> Service <| title == 'neutron-server' |>
|
|
::Openstacklib::Db::Postgresql['neutron'] ~> Exec <| title == 'neutron-db-sync' |>
|
|
}
|