diff --git a/docs/ref/contrib/gis/install/create_template_postgis-1.5.sh b/docs/ref/contrib/gis/install/create_template_postgis-1.5.sh
index 081b5f2..76e57c0 100755
a
|
b
|
|
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;" |