]> git.donarmstrong.com Git - roundcube.git/blob - debian/roundcube-core.prerm
New upstream release
[roundcube.git] / debian / roundcube-core.prerm
1 #!/bin/sh
2 # prerm script for roundcube
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 . /usr/share/debconf/confmodule
9 . /usr/share/dbconfig-common/dpkg/prerm 
10 dbc_go roundcube $@
11
12 case "$1" in
13     remove|upgrade|deconfigure)
14     ;;
15
16     failed-upgrade)
17     ;;
18
19     *)
20         echo "prerm called with unknown argument \`$1'" >&2
21         exit 1
22     ;;
23 esac
24
25 #DEBHELPER#
26
27 exit 0
28
29