Remove trailing commas.
This makes the module work on Puppet 2.7.1 (from Ubuntu 11.10).
This commit is contained in:
parent
b6245fde65
commit
f9dbf4a9c9
3 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ class postgresql::config(
|
|||
$listen_addresses = $postgresql::params::listen_addresses,
|
||||
$pg_hba_conf_path = $postgresql::params::pg_hba_conf_path,
|
||||
$postgresql_conf_path = $postgresql::params::postgresql_conf_path,
|
||||
$manage_redhat_firewall = $postgresql::params::manage_redhat_firewall,
|
||||
$manage_redhat_firewall = $postgresql::params::manage_redhat_firewall
|
||||
) inherits postgresql::params {
|
||||
|
||||
# Basically, all this class needs to handle is passing parameters on
|
||||
|
|
|
@ -35,7 +35,7 @@ class postgresql::config::beforeservice(
|
|||
$listen_addresses = $postgresql::params::listen_addresses,
|
||||
$pg_hba_conf_path = $postgresql::params::pg_hba_conf_path,
|
||||
$postgresql_conf_path = $postgresql::params::postgresql_conf_path,
|
||||
$manage_redhat_firewall = $postgresql::params::manage_redhat_firewall,
|
||||
$manage_redhat_firewall = $postgresql::params::manage_redhat_firewall
|
||||
) inherits postgresql::params {
|
||||
|
||||
File {
|
||||
|
|
|
@ -31,7 +31,7 @@ define postgresql::database_grant(
|
|||
$db,
|
||||
$role,
|
||||
$psql_db = 'postgres',
|
||||
$psql_user='postgres',
|
||||
$psql_user='postgres'
|
||||
) {
|
||||
|
||||
# TODO: FIXME: only works on databases, due to using has_database_privilege
|
||||
|
|
Loading…
Reference in a new issue