* update the changelog
[tango.git] / debian / tango-db.postrm
blob97a431935b952eb9544b799542bd2439f0ea1816
1 #!/bin/sh
3 set -e
5 if [ -f /usr/share/debconf/confmodule ]; then
6 . /usr/share/debconf/confmodule
7 fi
8 if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then
9 . /usr/share/dbconfig-common/dpkg/postrm.mysql
10 dbc_go tango-db $@
13 if [ "$1" = "purge" ]; then
14 rm -f /var/lib/tango/.my.cnf
15 if which ucf >/dev/null 2>&1; then
16 ucf --purge /var/lib/tango/.my.cnf
20 #DEBHELPER#