#!/bin/sh # postinst script for osgeo-data-oz # # see: dh_installdeb(1) mv /etc/postgresql/8.3/main/pg_hba.conf /tmp/pg_hba.conf.original /etc/init.d/postgresql-8.3 stop mv /tmp/pg_hba.conf /etc/postgresql/8.3/main/pg_hba.conf /etc/init.d/postgresql-8.3 start psql -U postgres -W -f /tmp/oz.sql -d postgres /etc/init.d/postgresql-8.3 stop mv /tmp/pg_hba.conf.original /etc/postgresql/8.3/main/pg_hba.conf /etc/init.d/postgresql-8.3 start rm /tmp/oz.sql exit 0