Changes between Initial Version and Version 1 of Ticket #14604


Ignore:
Timestamp:
Nov 2, 2010, 11:41:56 PM (14 years ago)
Author:
Gabriel Hurley
Comment:

Formatted description. The docs referenced by this ticket are here: http://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#ibex

The whole section is outdated, not just the script. Those docs don't mention Jaunty (9.04) or Lucid (10.04) at all. Simply fixing the script isn't the answer, here, though it would help.

Also, the current sentence has a typo, and is missing the word "in".

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14604

    • Property Keywords gis added
    • Property Triage Stage UnreviewedAccepted
  • Ticket #14604 – Description

    initial v1  
    33The following script is functional:
    44
     5{{{
    56#!/usr/bin/env bash
    67POSTGIS_SQL_PATH=/usr/share/postgresql/8.4/contrib/postgis-1.5
     
    1213psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;" # Enabling users to alter spatial tables.
    1314psql -d template_postgis -c "GRANT ALL ON spatial_ref_sys TO PUBLIC;"
     15}}}
    1416
    15 Note the updated path and the renamed lwpostgis.sql > postgis.sql
     17Note the updated path and the renamed `lwpostgis.sql > postgis.sql`
Back to Top