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