Mercurial > dive4elements > river
diff backend/doc/schema/postgresql-setup.sh @ 7352:c6825778de1f
Merged double-precision branch.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Wed, 16 Oct 2013 13:03:13 +0200 |
parents | 4ad2b530dbba |
children | c1cea6c95967 |
line wrap: on
line diff
--- a/backend/doc/schema/postgresql-setup.sh Wed Oct 16 12:39:33 2013 +0200 +++ b/backend/doc/schema/postgresql-setup.sh Wed Oct 16 13:03:13 2013 +0200 @@ -11,9 +11,12 @@ createuser -S -D -R $1 createdb $1 createlang plpgsql $1 -# Appears e.g. as /usr/share/postgresql/contrib/postgis-1.5/ on other systems. -psql -d $1 -f /usr/share/postgresql/8.4/contrib/postgis-1.5/postgis.sql -psql -d $1 -f /usr/share/postgresql/8.4/contrib/postgis-1.5/spatial_ref_sys.sql +# Path appears e.g. as /usr/share/postgresql/contrib/postgis-1.5/ on some systems, +# /usr/share/postgresql/8.4/contrib/postgis-1.5/ on others +POST_INIT_DIR=`find /usr/share/postgresql/ -name spatial_ref_sys.sql | sed -n '1p'` +POST_INIT_DIR=`dirname $POST_INIT_DIR` +psql -d $1 -f $POST_INIT_DIR/postgis.sql +psql -d $1 -f $POST_INIT_DIR/spatial_ref_sys.sql psql -d $1 -c "ALTER USER $1 WITH PASSWORD '$1';" psql -d $1 -c "GRANT ALL ON geometry_columns TO $1; GRANT ALL ON geography_columns TO $1; GRANT ALL ON spatial_ref_sys TO $1;"