config is in setserial 2.17-46.
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 | #!/bin/sh -e
# determine architecture
ARCH=`dpkg --print-architecture`
# source debconf library
. /usr/share/debconf/confmodule
if [ "$ARCH" != "m68k" ]; then
# ask about autosave
db_input medium setserial/autosave-types || true
fi
# db_input medium setserial/usemodup || true
# go, go, go! :)
db_go
|