File: configure-debian.postinst

package info (click to toggle)
configure-debian 1.0.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 184 kB
  • ctags: 5
  • sloc: perl: 232; makefile: 48; sh: 40
file content (16 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

# Source debconf library.
. /usr/share/debconf/confmodule

if [ "$1" = "configure" ]
then
   if dpkg --compare-versions "$2" "le-nl" "0.5.1"
   then
	db_unregister configure-debian/another
	db_unregister configure-debian/program
	db_unregister configure-debian/subsection
   fi
fi

#DEBHELPER#