forked from puppetlabs/puppetlabs-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.pp
35 lines (34 loc) · 1.33 KB
/
client.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# @summary Installs PostgreSQL client software. Set the following parameters if you have a custom version you would like to install.
#
# @note
# Make sure to add any necessary yum or apt repositories if specifying a custom version.
#
# @param file_ensure
# Ensure the connection validation script is present
# @param validcon_script_path
# Optional. Absolute path for the postgresql connection validation script.
# @param package_name
# Sets the name of the PostgreSQL client package.
# @param package_ensure
# Ensure the client package is installed
class postgresql::client (
Enum['file', 'absent'] $file_ensure = 'file',
Stdlib::Absolutepath $validcon_script_path = $postgresql::params::validcon_script_path,
String[1] $package_name = $postgresql::params::client_package_name,
Variant[Enum['present', 'absent', 'purged', 'disabled', 'installed', 'latest'], String[1]] $package_ensure = 'present',
) inherits postgresql::params {
if $package_name != 'UNSET' {
package { 'postgresql-client':
ensure => $package_ensure,
name => $package_name,
tag => 'puppetlabs-postgresql',
}
}
file { $validcon_script_path:
ensure => $file_ensure,
content => file('postgresql/validate_postgresql_connection.sh'),
owner => 0,
group => 0,
mode => '0755',
}
}