f3c31ff6474962ee227b90c153517020c044e38f
[mirror/dsa-puppet.git] / 3rdparty / modules / postgresql / manifests / lib / docs.pp
1 # This class installs the postgresql-docs See README.md for more
2 # details.
3 class postgresql::lib::docs (
4   String $package_name      = $postgresql::params::docs_package_name,
5   String[1] $package_ensure = 'present',
6 ) inherits postgresql::params {
7
8   package { 'postgresql-docs':
9     ensure => $package_ensure,
10     name   => $package_name,
11     tag    => 'postgresql',
12   }
13
14 }