#!/bin/sh
# \
exec expect "$0" ${1+"$@"}
spawn /usr/sbin/dpkg-reconfigure --frontend=readline debconf
expect "What interface should be used for configuring packages?"
send "2\r"
#expect "Ignore questions with a priority less than.."
expect "See only questions that are of what priority and higher?"
send "3\r"
expect "Show all old questions again and again?"
send "no\r"
expect eof
