diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 11:13:37 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 11:13:37 +0300 |
commit | 1428ce45c5c1c0a880a08dfc692463a3538afaf8 (patch) | |
tree | a4186373e1165aba69c4e7bd5021b325efcd2125 /modules/postgresql/manifests/server.pp | |
parent | 50cfe0d1d1a1ce2ec1900a9ba016e9d7f72a7025 (diff) | |
download | puppet-1428ce45c5c1c0a880a08dfc692463a3538afaf8.tar puppet-1428ce45c5c1c0a880a08dfc692463a3538afaf8.tar.gz puppet-1428ce45c5c1c0a880a08dfc692463a3538afaf8.tar.bz2 puppet-1428ce45c5c1c0a880a08dfc692463a3538afaf8.tar.xz puppet-1428ce45c5c1c0a880a08dfc692463a3538afaf8.zip |
lint fixes for postgresql
Diffstat (limited to 'modules/postgresql/manifests/server.pp')
-rw-r--r-- | modules/postgresql/manifests/server.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/postgresql/manifests/server.pp b/modules/postgresql/manifests/server.pp index 85f5dda5..29fa30d0 100644 --- a/modules/postgresql/manifests/server.pp +++ b/modules/postgresql/manifests/server.pp @@ -37,11 +37,11 @@ class postgresql::server { @postgresql::pg_hba { $postgresql::var::hba_file: } postgresql::hba_entry { 'allow_local_ipv4': - type => 'host', + type => 'host', database => 'all', - user => 'all', - address => '127.0.0.1/32', - method => 'md5', + user => 'all', + address => '127.0.0.1/32', + method => 'md5', } postgresql::config { |