X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fpostgresql%2Fexamples%2Fpostgresql_pgconf_extras.pp;fp=3rdparty%2Fmodules%2Fpostgresql%2Fexamples%2Fpostgresql_pgconf_extras.pp;h=0000000000000000000000000000000000000000;hb=a69999e580f8b3abd12446c2d6ad59e517651813;hp=22b210d2160dab356d1c0169ff569eb2826a2fec;hpb=e7b6b352165009c385c52fcfe5a1055690dbfa4b;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/postgresql/examples/postgresql_pgconf_extras.pp b/3rdparty/modules/postgresql/examples/postgresql_pgconf_extras.pp deleted file mode 100644 index 22b210d21..000000000 --- a/3rdparty/modules/postgresql/examples/postgresql_pgconf_extras.pp +++ /dev/null @@ -1,19 +0,0 @@ -class { 'postgresql::server': - config_hash => { - 'ip_mask_deny_postgres_user' => '0.0.0.0/32', - 'ip_mask_allow_all_users' => '0.0.0.0/0', - 'listen_addresses' => '*', - 'manage_redhat_firewall' => true, - 'postgres_password' => 'postgres', - }, -} - -include 'postgresql::params' - -$pg_conf_include_file = "${postgresql::params::confdir}/postgresql_puppet_extras.conf" - -file { $pg_conf_include_file: - content => 'max_connections = 123', - notify => Service['postgresqld'], -} -