X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/blobdiff_plain/8ff8bfe4ba94dd1ed0a89a06d528c1b48072f2dd..5d9dbc6ac22ce03205de8ce2246a1774526e84c4:/debian/invirt-database-server.postinst?ds=sidebyside diff --git a/debian/invirt-database-server.postinst b/debian/invirt-database-server.postinst new file mode 100644 index 0000000..79fe70c --- /dev/null +++ b/debian/invirt-database-server.postinst @@ -0,0 +1,53 @@ +#!/bin/sh +# postinst script for invirt-database-server +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. +# Note that by moving this above our generated code we could run into significant problems +# if we happened to start a daemon, and use debconf +# We move this up here because we need the diversion of postgresql.conf to happen before we create tables + +#DEBHELPER# + + +case "$1" in + configure) + #Don't create users on upgrade + if [ -z "$2" ]; then + # Don't fail if the user/database already exists + su postgres -c 'createuser invirt -S -d -R' || true + su postgres -c 'createdb invirt -O invirt' || true + adduser --system invirt + fi + invoke-rc.d postgresql-8.3 restart + su invirt -s /bin/sh -c 'invirt-database-tables create' + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +exit 0 + +