aboutsummaryrefslogtreecommitdiffstats
path: root/keystone-moon/debian/keystone.prerm
blob: 9f89a1ae098994349da04fc250f571b9c0f078a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

. /usr/share/debconf/confmodule

db_get keystone/configure_db
if [ "$RET" = "true" ]; then
    . /usr/share/dbconfig-common/dpkg/prerm
    dbc_go keystone $@
fi

#DEBHELPER#

exit 0