File: cinder-common.prerm

package info (click to toggle)
cinder 2014.1.3-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 29,764 kB
  • sloc: python: 106,385; sh: 540; sql: 398; makefile: 111
file content (15 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (9)
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 cinder/configure_db || true
if [ "$RET" = "true" ]; then
	if [ -r /usr/share/dbconfig-common/dpkg/prerm ] ; then
		. /usr/share/dbconfig-common/dpkg/prerm
		dbc_go cinder-common $@
	fi
fi

#DEBHELPER#