config is in code-aster-run 1.13.1-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 | #!/bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
ASRUN=/etc/codeaster/asrun
if [ -f "$ASRUN" ]; then
editor=$(sed -ne 's/^editor[[:space:]]*:[[:space:]]*//; p; q' $ASRUN)
terminal=$(sed -ne '/^terminal/ { s/^terminal[[:space:]]*:[[:space:]]*//; p; q}' $ASRUN)
db_set astk/EDITOR "$editor"
db_set astk/TERMINAL "$terminal"
fi
db_input low astk/EDITOR || true
db_input low astk/TERMINAL || true
db_go || true
|