config is in check-mk-server 1.2.2p3-1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh
set -e
# config script is run with 2 parameters given (see man debconf-devel):
# 1. action being performed
# 2. version of the package that is currently installed
# Source debconf library.
. /usr/share/debconf/confmodule
# Message about rdd definiton changes
if [ "$#" -eq 2 ] && test -n "$2"; then
dpkg --compare-versions $2 lt 1.2.0 && db_input high check-mk-server/v1.2_upgrade_msg || true
fi
db_go || true
|