59c1cbfbf8
This is a very very large change to the module. It started out as a fix to add postgresl::server::config_entry, and quickly became a rewrite to fix a lot of ordering issues inherent in the API. Since this changes the Public API it is considered a backwards compatible change. See the upgrading guide in README.md for more details as to what has been modified in this patch. Signed-off-by: Ken Barber <ken@bob.sh>
18 lines
431 B
Puppet
18 lines
431 B
Puppet
# Manage a database grant. See README.md for more details.
|
|
define postgresql::server::database_grant(
|
|
$privilege,
|
|
$db,
|
|
$role,
|
|
$psql_db = undef,
|
|
$psql_user = undef
|
|
) {
|
|
postgresql::server::grant { "database:${name}":
|
|
role => $role,
|
|
db => $db,
|
|
privilege => $privilege,
|
|
object_type => 'DATABASE',
|
|
object_name => $db,
|
|
psql_db => $psql_db,
|
|
psql_user => $psql_user,
|
|
}
|
|
}
|