File: cyborg-common.prerm

package info (click to toggle)
cyborg 14.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,596 kB
  • sloc: python: 17,951; sh: 346; makefile: 67; pascal: 66
file content (15 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (4)
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 cyborg/configure_db
if [ "$RET" = "true" ]; then
	. /usr/share/dbconfig-common/dpkg/prerm
	dbc_go cyborg-common $@
fi

#DEBHELPER#

exit 0