diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-13 15:00:26 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-13 22:52:09 +0100 |
commit | a386ce060c4c49d772bd4d03d6586012a266317e (patch) | |
tree | 5342c1ba851c73d5f8406a345b7fdddd8d8ea547 /modules/role/manifests | |
parent | a045b9dc12f71c286d4afcb196705f430b6731f5 (diff) | |
download | Puppet-a386ce060c4c49d772bd4d03d6586012a266317e.tar.gz Puppet-a386ce060c4c49d772bd4d03d6586012a266317e.tar.zst Puppet-a386ce060c4c49d772bd4d03d6586012a266317e.zip |
Reorder pg_hba rules
Diffstat (limited to 'modules/role/manifests')
-rw-r--r-- | modules/role/manifests/cryptoportfolio.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/role/manifests/cryptoportfolio.pp b/modules/role/manifests/cryptoportfolio.pp index 5b64787..503620b 100644 --- a/modules/role/manifests/cryptoportfolio.pp +++ b/modules/role/manifests/cryptoportfolio.pp | |||
@@ -136,7 +136,7 @@ class role::cryptoportfolio ( | |||
136 | user => $pg_user, | 136 | user => $pg_user, |
137 | address => '127.0.0.1/32', | 137 | address => '127.0.0.1/32', |
138 | auth_method => 'md5', | 138 | auth_method => 'md5', |
139 | order => "b0", | 139 | order => "05-01", |
140 | } | 140 | } |
141 | postgresql::server::pg_hba_rule { 'allow localhost ip6 TCP access to cryptoportfolio user': | 141 | postgresql::server::pg_hba_rule { 'allow localhost ip6 TCP access to cryptoportfolio user': |
142 | type => 'host', | 142 | type => 'host', |
@@ -144,7 +144,7 @@ class role::cryptoportfolio ( | |||
144 | user => $pg_user, | 144 | user => $pg_user, |
145 | address => '::1/128', | 145 | address => '::1/128', |
146 | auth_method => 'md5', | 146 | auth_method => 'md5', |
147 | order => "b0", | 147 | order => "05-01", |
148 | } | 148 | } |
149 | 149 | ||
150 | postgresql::server::pg_hba_rule { 'allow TCP access to replication user from immae.eu': | 150 | postgresql::server::pg_hba_rule { 'allow TCP access to replication user from immae.eu': |
@@ -153,7 +153,7 @@ class role::cryptoportfolio ( | |||
153 | user => $pg_user_replication, | 153 | user => $pg_user_replication, |
154 | address => 'immae.eu', | 154 | address => 'immae.eu', |
155 | auth_method => 'md5', | 155 | auth_method => 'md5', |
156 | order => "b0", | 156 | order => "05-01", |
157 | } | 157 | } |
158 | 158 | ||
159 | class { 'apache::mod::headers': } | 159 | class { 'apache::mod::headers': } |