3
0
Arne Teuke
2025-10-02 14:14:30 +02:00
parent ee67aaa26c
commit 87d838f8be
5 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
## postgresql_cd::server::roles::role_df
# Module name: postgresql_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary define manages databases
# @see https://www.postgresql.org/docs/9.6/static/managing-databases.html
# @param [string] pl_role_name the name of the role to be created.
# @param [string] pl_role_pw the password to be created
# @param [string] pl_role_attributes attributes for the role to be created
# @param [string] pl_role_status what to do with the role
##############################################################################
define postgresql_cd::server::roles::role_df (
Optional[String] $pl_role_name = undef,
Optional[String] $pl_role_pw = undef,
String $pl_role_attributes = 'LOGIN',
String $pl_role_status = 'CREATE ROLE',
) {
$pl_manage_roles = $postgresql_cd::params::pl_manage_roles
if $pl_manage_roles == true {
# create the role
exec { "role_${name}":
command => template('postgresql_cd/server/roles/role.sql.erb'),
user => 'postgres',
path => ['/usr/bin','/bin'],
cwd => '/tmp',
unless => template('postgresql_cd/server/roles/unless_sql.erb'),
}
}
}