config is in snmpd 5.7.2~dfsg-8.1ubuntu3.
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 16 17 18 19 20 21 | #! /bin/sh
set -e
action="$1"
version="$2"
. /usr/share/debconf/confmodule
if [ -n "$version" ]
then
# Source debconf library.
db_version 2.0
if [ -n "$version" ] && dpkg --compare-versions "$version" lt 5.2.2
then
db_text critical snmpd/upgradefrom521 || true
fi
db_go
fi
exit 0
|