config is in rinputd 1.0.5-2.
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 29 30 31 32 33 34 | #!/bin/sh
set -e
[ `echo $DEBIAN_FRONTEND | tr '[:upper:]' '[:lower:]'` = "noninteractive" ] && exit 0
. /usr/share/debconf/confmodule
db_beginblock
db_input high rinputd/username || true
db_input high rinputd/passwd || true
db_endblock
db_go
db_get rinputd/username
USER="$RET"
db_get rinputd/passwd
PASS="$RET"
while [ -z "$USER" -o -z "$PASS" ]; do
db_beginblock
db_input high rinputd/invalid || true
db_input high rinputd/username || true
db_input high rinputd/passwd || true
db_endblock
db_go
db_get rinputd/username
USER="$RET"
db_get rinputd/passwd
PASS="$RET"
done
|