From 7d5d57f43d3fddd6eb95de830533865fbf521401 Mon Sep 17 00:00:00 2001 From: ashrithr Date: Sun, 6 Apr 2014 12:41:22 -0700 Subject: [PATCH] [utils] updates database configuration --- utils/manifests/database.pp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/utils/manifests/database.pp b/utils/manifests/database.pp index 7d31a3b..35ad5e1 100644 --- a/utils/manifests/database.pp +++ b/utils/manifests/database.pp @@ -20,7 +20,7 @@ database => 'all', user => 'postgres', auth_method => 'ident', - order => 10 + order => 01 } postgresql::server::pg_hba_rule { 'allow local connections': @@ -29,7 +29,7 @@ database => 'all', user => 'all', auth_method => 'md5', - order => 20 + order => 02 } postgresql::server::pg_hba_rule { 'ipv4 local connections': @@ -38,7 +38,8 @@ database => 'all', user => 'all', address => '127.0.0.1/32', - auth_method => 'trust' + auth_method => 'trust', + order => 03 } postgresql::server::pg_hba_rule { 'ipv6 local connections': @@ -47,7 +48,8 @@ database => 'all', user => 'all', address => '::1/128', - auth_method => 'trust' + auth_method => 'trust', + order => 04 } # create a database for puppetdb