We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa9165 commit 9a307d9Copy full SHA for 9a307d9
manifests/params.pp
@@ -134,6 +134,7 @@
134
}
135
136
$service_status = undef
137
+ $python_package_name="python-psycopg2"
138
139
140
'Debian': {
manifests/python.pp
@@ -0,0 +1,14 @@
1
+# Class: postgresql::python
2
+# This class installs the python libs for postgresql.
3
+
4
+class postgresql::python(
5
+ $package_name = $postgresql::params::python_package_name,
6
+ $package_ensure = 'present'
7
+) inherits postgresql::params {
8
9
+ package { 'python-psycopg2':
10
+ ensure => $package_ensure,
11
+ name => $package_name,
12
+ }
13
14
+}
0 commit comments