1 |
slords |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket mezzanine_patched_smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket |
2 |
|
|
--- smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket 2007-05-24 16:13:22.000000000 -0400 |
3 |
|
|
+++ mezzanine_patched_smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket 2007-05-24 16:12:37.000000000 -0400 |
4 |
|
|
@@ -1,5 +1,13 @@ |
5 |
|
|
{ |
6 |
|
|
my $local = $postgresql{LocalNetworkingOnly} || 'yes'; |
7 |
|
|
- $OUT = "tcpip_socket = "; |
8 |
|
|
- $OUT .= ($local eq 'yes') ? 'false' : 'true'; |
9 |
|
|
+ if (scalar </usr/share/doc/postgresql-7.*>) |
10 |
|
|
+ { |
11 |
|
|
+ $OUT = "tcpip_socket = "; |
12 |
|
|
+ $OUT .= ($local eq 'yes') ? 'false' : 'true'; |
13 |
|
|
+ } |
14 |
|
|
+ else |
15 |
|
|
+ { |
16 |
|
|
+ $OUT = "listen_addresses = "; |
17 |
|
|
+ $OUT .= ($local eq 'yes') ? 'localhost' : "127.0.0.1,$LocalIP"; |
18 |
|
|
+ } |
19 |
|
|
} |