2016-05-31 11:37:25 +00:00
|
|
|
# == 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'
|
|
|
|
#
|
|
|
|
class watcher::db::postgresql(
|
|
|
|
$password,
|
|
|
|
$dbname = 'watcher',
|
|
|
|
$user = 'watcher',
|
|
|
|
$encoding = undef,
|
|
|
|
$privileges = 'ALL',
|
|
|
|
) {
|
|
|
|
|
2019-12-08 23:25:42 +01:00
|
|
|
include watcher::deps
|
2016-05-31 11:37:25 +00:00
|
|
|
|
2025-02-18 02:06:12 +09:00
|
|
|
openstacklib::db::postgresql { 'watcher':
|
2020-05-20 08:35:22 +09:00
|
|
|
password => $password,
|
|
|
|
dbname => $dbname,
|
|
|
|
user => $user,
|
|
|
|
encoding => $encoding,
|
|
|
|
privileges => $privileges,
|
2016-05-31 11:37:25 +00:00
|
|
|
}
|
|
|
|
|
2016-12-01 17:54:42 +08:00
|
|
|
Anchor['watcher::db::begin']
|
|
|
|
~> Class['watcher::db::postgresql']
|
|
|
|
~> Anchor['watcher::db::end']
|
2016-05-31 11:37:25 +00:00
|
|
|
|
|
|
|
}
|