Add missing manifests/plperl.pp file
This commit is contained in:
parent
5065246512
commit
d7cb86ca1e
1 changed files with 24 additions and 0 deletions
24
manifests/plperl.pp
Normal file
24
manifests/plperl.pp
Normal file
|
@ -0,0 +1,24 @@
|
|||
# == Class: postgresql::plperl
|
||||
#
|
||||
# This class installs the PL/Perl procedural language for postgresql.
|
||||
#
|
||||
# === Parameters
|
||||
#
|
||||
# [*ensure*]
|
||||
# ensure state for package.
|
||||
# can be specified as version.
|
||||
#
|
||||
# [*package_name*]
|
||||
# name of package
|
||||
#
|
||||
class postgresql::plperl(
|
||||
$package_name = $postgresql::params::plperl_package_name,
|
||||
$package_ensure = 'present'
|
||||
) inherits postgresql::params {
|
||||
|
||||
package { 'postgresql-plperl':
|
||||
ensure => $package_ensure,
|
||||
name => $package_name,
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue