config is in wzdftpd 0.8.3-6.1ubuntu4.
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 22 23 24 25 | #!/bin/sh -e
# Source debconf library.
. /usr/share/debconf/confmodule
version_warning() {
# make sure the user will actually see the note
db_fset "wzdftpd/upgrade" seen false
db_input "high" "wzdftpd/upgrade" || true
db_go
}
version=$2
if [ -n "$version" ]; then
if dpkg --compare-versions $version lt 0.6.0; then
version_warning
fi
fi
# Don't wait on wzdftpd to close file handles
db_stop
exit 0
|