File: gnocchi-common.prerm

package info (click to toggle)
gnocchi 4.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,180 kB
  • sloc: python: 19,372; sh: 282; makefile: 60
file content (17 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

if [ "${1}" = "remove" ] && [ -r /usr/share/debconf/confmodule ] && [ -r /usr/share/dbconfig-common/dpkg/prerm ] ; then
	. /usr/share/debconf/confmodule

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

#DEBHELPER#

exit 0