Last change
on this file since 77 was
77,
checked in by nelhage, 18 years ago
|
Adding postini and prerm scripts for sipb-xen-database-server
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # prerm script for #PACKAGE# |
---|
3 | # |
---|
4 | # see: dh_installdeb(1) |
---|
5 | |
---|
6 | set -e |
---|
7 | |
---|
8 | # summary of how this script can be called: |
---|
9 | # * <prerm> `remove' |
---|
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 |
---|
18 | |
---|
19 | |
---|
20 | case "$1" in |
---|
21 | remove|upgrade|deconfigure) |
---|
22 | |
---|
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$/' \ |
---|
29 | "$PG_HBA" |
---|
30 | |
---|
31 | if hash invoke-rc.d; then |
---|
32 | invoke-rc.d postgresql-8.1 restart |
---|
33 | else |
---|
34 | /etc/init.d/postgresql-8.1 restart |
---|
35 | fi |
---|
36 | ;; |
---|
37 | |
---|
38 | failed-upgrade) |
---|
39 | ;; |
---|
40 | |
---|
41 | *) |
---|
42 | echo "prerm called with unknown argument \`$1'" >&2 |
---|
43 | exit 1 |
---|
44 | ;; |
---|
45 | esac |
---|
46 | |
---|
47 | # dh_installdeb will replace this with shell code automatically |
---|
48 | # generated by other debhelper scripts. |
---|
49 | |
---|
50 | #DEBHELPER# |
---|
51 | |
---|
52 | exit 0 |
---|
53 | |
---|
54 | |
---|
Note: See
TracBrowser
for help on using the repository browser.