Add Neutron 7.0.0 for Ubuntu 14.04
[openstack-build/neutron-build.git] / trusty / debian / neutron-common.prerm
1 #!/bin/sh
2
3 set -e
4
5 . /usr/share/debconf/confmodule
6
7 db_get neutron/configure_db
8 if [ "$RET" = "true" ]; then
9         if [ -e /usr/share/dbconfig-common/dpkg/prerm ] ; then
10                 . /usr/share/dbconfig-common/dpkg/prerm
11                 dbc_go neutron-common $@
12         fi
13 fi
14
15 #DEBHELPER#
16
17 exit 0