config is in apt-dater-host 0.8.6-3.
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 26 27 28 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
# Default value is true (enabled).
ASSUME_YES="true"
if [ -f "/etc/apt-dater-host.conf" ] ; then
# Get the current setted value.
CURRENT_VALUE=$(grep '^$ASSUMEYES' "/etc/apt-dater-host.conf"|cut -d'=' -f2-|sed 's/;//g'|tr -d "\n")
if [ "$CURRENT_VALUE" = "0" ]; then
# Overwrite default value, if it is not enabled.
ASSUME_YES="false"
fi
fi
db_set apt-dater-host/assume_yes $ASSUME_YES
db_input medium apt-dater-host/assume_yes || true
db_go
exit 0
|