Puppet Class: foreman::database::postgresql::encoding
- Defined in:
- manifests/database/postgresql/encoding.pp
Summary
Class to ensure the packages for encoding are installedOverview
3 4 5 6 7 |
# File 'manifests/database/postgresql/encoding.pp', line 3
class foreman::database::postgresql::encoding {
if $facts['os']['family'] == 'RedHat' {
stdlib::ensure_packages(['glibc-langpack-en'])
}
}
|