
1) Add deps to all that is needed. 2) Fix hooks for external install & svc management. 3) Update releated spec tests. Change-Id: Id3e0594631579c316c721dd53b0579808571ee95
58 lines
1.1 KiB
Puppet
58 lines
1.1 KiB
Puppet
# == Class: watcher::db::postgresql
|
|
#
|
|
# Class that configures postgresql for watcher
|
|
# Requires the Puppetlabs postgresql module.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# (Required) Password to connect to the database.
|
|
#
|
|
# [*dbname*]
|
|
# (Optional) Name of the database.
|
|
# Defaults to 'watcher'.
|
|
#
|
|
# [*user*]
|
|
# (Optional) User to connect to the database.
|
|
# Defaults to 'watcher'.
|
|
#
|
|
# [*encoding*]
|
|
# (Optional) The charset to use for the database.
|
|
# Default to undef.
|
|
#
|
|
# [*privileges*]
|
|
# (Optional) Privileges given to the database user.
|
|
# Default to 'ALL'
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# == Authors
|
|
#
|
|
# == Copyright
|
|
#
|
|
class watcher::db::postgresql(
|
|
$password,
|
|
$dbname = 'watcher',
|
|
$user = 'watcher',
|
|
$encoding = undef,
|
|
$privileges = 'ALL',
|
|
) {
|
|
|
|
include ::watcher::deps
|
|
|
|
::openstacklib::db::postgresql { 'watcher':
|
|
password_hash => postgresql_password($user, $password),
|
|
dbname => $dbname,
|
|
user => $user,
|
|
encoding => $encoding,
|
|
privileges => $privileges,
|
|
}
|
|
|
|
Anchor['watcher::db::begin']
|
|
~> Class['watcher::db::postgresql']
|
|
~> Anchor['watcher::db::end']
|
|
|
|
}
|