config is in rkhunter 1.4.0-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 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_title "rkhunter" || true
# Sync debconf values with the local configuration
if [ -r /etc/default/rkhunter ]; then
. /etc/default/rkhunter
db_set rkhunter/cron_db_update "$CRON_DB_UPDATE"
db_set rkhunter/cron_daily_run "$CRON_DAILY_RUN"
db_set rkhunter/apt_autogen "$APT_AUTOGEN"
fi
db_input medium rkhunter/cron_daily_run || true
[ -x /usr/bin/wget ] || [ -x /usr/bin/curl ] || [ -x /usr/bin/links ] || [ -x /usr/bin/elinks ] || [ -x /usr/bin/lynx ] && db_input medium rkhunter/cron_db_update || true
db_input medium rkhunter/apt_autogen || true
db_go || true
|