Project

General

Profile

« Previous | Next » 

Revision 11662

Makefile, schemas/.Mac.conf: upgraded to PostgreSQL 9.3, which is needed for proper exception parsing in the auto-re-create-views functionality. this also removes the Mac 10.8 Mountain Lion quirks, such as renaming the postgres user to _postgres (which messed everything up, but is now back to normal).

View differences:

pg_hba.Mac.conf
72 72
# listen on a non-local interface via the listen_addresses
73 73
# configuration parameter, or via the -i or -h command line switches.
74 74

  
75
# CAUTION: Configuring the system for local "trust" authentication
76
# allows any local user to connect as any PostgreSQL user, including
77
# the database superuser.  If you do not trust all your local users,
78
# use another authentication method.
79 75

  
80

  
81 76
# Database administrative login by UNIX sockets
82
local   all         postgres                          ident map=postgres
77
local   all         postgres                          ident
83 78
host    all         postgres    127.0.0.1/32          md5
84 79
host    all         postgres    ::1/128               md5
85 80

  
86 81
# TYPE  DATABASE        USER            ADDRESS                 METHOD
87 82

  
88 83
# "local" is for Unix domain socket connections only
89
#local   all             all                                     trust
84
#local   all             all                                     md5
90 85
# IPv4 local connections:
91
#host    all             all             127.0.0.1/32            trust
86
#host    all             all             127.0.0.1/32            md5
92 87
# IPv6 local connections:
93
#host    all             all             ::1/128                 trust
88
#host    all             all             ::1/128                 md5
94 89
# Allow replication connections from localhost, by a user with the
95 90
# replication privilege.
96
#local   replication     postgres                                trust
97
#host    replication     postgres        127.0.0.1/32            trust
98
#host    replication     postgres        ::1/128                 trust
91
#local   replication     postgres                                md5
92
#host    replication     postgres        127.0.0.1/32            md5
93
#host    replication     postgres        ::1/128                 md5
99 94

  
100 95
local   template1,vegbien  public_           trust
101 96
host    template1,vegbien  public_ 0.0.0.0/0 trust

Also available in: Unified diff