2 # prerm script for #PACKAGE#
4 # see: dh_installdeb(1)
8 # summary of how this script can be called:
10 # * <old-prerm> `upgrade' <new-version>
11 # * <new-prerm> `failed-upgrade' <old-version>
12 # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
13 # * <deconfigured's-prerm> `deconfigure' `in-favour'
14 # <package-being-installed> <version> `removing'
15 # <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
21 remove|upgrade|deconfigure)
23 # This will destroy data -- do we want to do this?
24 # su postgres -c 'dropdb sipb_xen'
25 # su postgres -c 'dropuser sipb-xen'
26 PG_HBA=/etc/postgresql/8.1/main/pg_hba.conf
27 perl -ni -e 'print unless /^# ===BEGIN ADDED BY sipb-xen-dabase server$/ ..
28 /^# ===END ADDED BY sipb-xen-dabase server$/' \
31 if hash invoke-rc.d; then
32 invoke-rc.d postgresql-8.1 restart
34 /etc/init.d/postgresql-8.1 restart
42 echo "prerm called with unknown argument \`$1'" >&2
47 # dh_installdeb will replace this with shell code automatically
48 # generated by other debhelper scripts.