File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
docs/ref/contrib/gis/install Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- POSTGIS_SQL_PATH=` pg_config --sharedir` /contrib/postgis-1.5
2
+ if [[ ` uname -r | grep el6` ]]; then
3
+ POSTGIS_SQL_PATH=` pg_config --sharedir` /contrib/postgis
4
+ POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH /postgis-64.sql
5
+ else
6
+ POSTGIS_SQL_PATH=` pg_config --sharedir` /contrib/postgis-1.5
7
+ POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH /postgis.sql
8
+ fi
3
9
createdb -E UTF8 template_postgis # Create the template spatial database.
4
10
createlang -d template_postgis plpgsql # Adding PLPGSQL language support.
5
11
psql -d postgres -c " UPDATE pg_database SET datistemplate='true' WHERE datname='template_postgis';"
6
- psql -d template_postgis -f $POSTGIS_SQL_PATH /postgis.sql # Loading the PostGIS SQL routines
12
+ psql -d template_postgis -f $POSTGIS_SQL_FILE # Loading the PostGIS SQL routines
7
13
psql -d template_postgis -f $POSTGIS_SQL_PATH /spatial_ref_sys.sql
8
14
psql -d template_postgis -c " GRANT ALL ON geometry_columns TO PUBLIC;" # Enabling users to alter spatial tables.
9
15
psql -d template_postgis -c " GRANT ALL ON geography_columns TO PUBLIC;"
You can’t perform that action at this time.
0 commit comments