aboutsummaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-02-21 15:51:11 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-02-21 15:51:11 +0100
commitb859262351650df3368d4f3fa49a487a7d9b35b7 (patch)
tree71b5d9f6d10616409606d2126cfafb7491a8353a /modules/profile
parente17078be2c92c88e0fc8ecc88a626cdb99d0d09a (diff)
parent43c4ee4e2fd1c7ed992a420d6d478375475194dd (diff)
downloadPuppet-b859262351650df3368d4f3fa49a487a7d9b35b7.tar.gz
Puppet-b859262351650df3368d4f3fa49a487a7d9b35b7.tar.zst
Puppet-b859262351650df3368d4f3fa49a487a7d9b35b7.zip
Merge branch 'pg_replication'
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/manifests/postgresql.pp3
-rw-r--r--modules/profile/manifests/tools.pp2
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/profile/manifests/postgresql.pp b/modules/profile/manifests/postgresql.pp
index 8dcc4cb..1024c66 100644
--- a/modules/profile/manifests/postgresql.pp
+++ b/modules/profile/manifests/postgresql.pp
@@ -22,7 +22,8 @@ class profile::postgresql {
22 } 22 }
23 23
24 class { '::postgresql::server': 24 class { '::postgresql::server':
25 postgres_password => generate_password(24, $password_seed, "postgres") 25 postgres_password => generate_password(24, $password_seed, "postgres"),
26 listen_addresses => "*",
26 } 27 }
27 28
28 postgresql::server::pg_hba_rule { 'local access as postgres user': 29 postgresql::server::pg_hba_rule { 'local access as postgres user':
diff --git a/modules/profile/manifests/tools.pp b/modules/profile/manifests/tools.pp
index 52e3cea..0b0ab46 100644
--- a/modules/profile/manifests/tools.pp
+++ b/modules/profile/manifests/tools.pp
@@ -1,3 +1,3 @@
1class profile::tools { 1class profile::tools {
2 ensure_packages(['vim', 'bash-completion']) 2 ensure_packages(['vim', 'bash-completion', 'net-tools'])
3} 3}