Opened 12 years ago

Closed 12 years ago

#17894 closed Bug (duplicate)

create_template_postgis-debian.sh fails on Ubuntu 11.10

Reported by: John Paulett Owned by: nobody
Component: GIS Version: dev
Severity: Normal Keywords:
Cc: john@… Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Ubuntu 11.10 upgraded to PostgreSQL 9.1, thus the path to the PostGIS files have changed again (to /usr/share/postgresql/9.1/contrib/postgis-1.5)

Additionally it appears that plpsql is now installed in the template database by default, resulting the failure of the createlang command, which causes following commands to not be executed:

createlang: language "plpgsql" is already installed in database "template_postgis"

On a fresh Ubuntu 11.10 install:

$ sudo -u postgres psql
psql (9.1.3)
Type "help" for help.

postgres=# \dL
      List of languages
  Name   |  Owner   | Trusted 
---------+----------+---------
 plpgsql | postgres | t
(1 row)

The attached patch adds the path to PostgreSQL 9.1 and only runs createlang for older version.

Attachments (1)

create-template-pg91.patch (1.1 KB ) - added by John Paulett 12 years ago.
PG 9.1 support

Download all attachments as: .zip

Change History (3)

by John Paulett, 12 years ago

Attachment: create-template-pg91.patch added

PG 9.1 support

comment:1 by John Paulett, 12 years ago

Cc: john@… added

comment:2 by Claude Paroz, 12 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #17584

Note: See TracTickets for help on using tickets.
Back to Top