Ticket #20269: create_template_postgis-1.5.sh.patch

File create_template_postgis-1.5.sh.patch, 1.3 KB (added by mfandreas, 11 years ago)
  • docs/ref/contrib/gis/install/create_template_postgis-1.5.sh

    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  
    11#!/usr/bin/env bash
    2 POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis-1.5
     2if [[ `uname -r | grep el6` ]]; then
     3  POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis
     4  POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH/postgis-64.sql
     5else
     6  POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis-1.5
     7  POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH/postgis.sql
     8fi
    39createdb -E UTF8 template_postgis # Create the template spatial database.
    410createlang -d template_postgis plpgsql # Adding PLPGSQL language support.
    511psql -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
     12psql -d template_postgis -f $POSTGIS_SQL_FILE # Loading the PostGIS SQL routines
    713psql -d template_postgis -f $POSTGIS_SQL_PATH/spatial_ref_sys.sql
    814psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;" # Enabling users to alter spatial tables.
    915psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"
Back to Top