Skip to content

Instantly share code, notes, and snippets.

@oscarfonts
oscarfonts / install-postgis.sh
Created February 27, 2012 12:10 — forked from rolo/gist:1481128
Install Postgres 9.1, PostGIS and create PostGIS template on Ubuntu 11.10
#!/bin/bash
# Install Postgres 9.1 and PostGIS
sudo apt-get install postgresql-9.1 postgresql-9.1-postgis
# create template_postgis
sudo su postgres -c'createdb -E UTF8 -U postgres template_postgis'
sudo su postgres -c'createlang -d template_postgis plpgsql;'
sudo su postgres -c'psql -U postgres -d template_postgis -c"CREATE EXTENSION hstore;"'
sudo su postgres -c'psql -U postgres -d template_postgis -f /usr/share/postgresql/9.1/contrib/postgis-1.5/postgis.sql'