File: openstack-cluster-installer.prerm

package info (click to toggle)
openstack-cluster-installer 40.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,468 kB
  • sloc: php: 15,620; sh: 9,276; ruby: 37; makefile: 25
file content (15 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (5)
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 openstack-cluster-installer/configure_db || true
if [ "$RET" = "true" ]; then
	if [ -r /usr/share/dbconfig-common/dpkg/prerm ] ; then
		. /usr/share/dbconfig-common/dpkg/prerm
		dbc_go openstack-cluster-installer $@
	fi
fi

#DEBHELPER#