8000 Fixed #20269 -- Adapted PostGIS template create script for CentOS/RHEL · django/django@90f1170 · GitHub
[go: up one dir, main page]

Skip to content

Commit 90f1170

Browse files
committed
Fixed #20269 -- Adapted PostGIS template create script for CentOS/RHEL
Thanks Stephane Benchimol for the report and the initial script and mfandreas for the patch.
1 parent 16683f2 commit 90f1170

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/ref/contrib/gis/install/create_template_postgis-1.5.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
#!/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
39
createdb -E UTF8 template_postgis # Create the template spatial database.
410
createlang -d template_postgis plpgsql # Adding PLPGSQL language support.
511
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
713
psql -d template_postgis -f $POSTGIS_SQL_PATH/spatial_ref_sys.sql
814
psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;" # Enabling users to alter spatial tables.
915
psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"

0 commit comments

Comments
 (0)
0