config is in open-infrastructure-container-tools 20180218-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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | #!/bin/sh
set -e
CONFFILE="/etc/default/container-tools"
. /usr/share/debconf/confmodule
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/machines || true
db_go
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/config || true
db_go
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/debconf || true
db_go
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/hooks || true
db_go
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/keys || true
db_go
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/cache || true
db_go
if [ -e /usr/share/container-tools/scripts ]
then
SCRIPT_CHOICES="$(cd /usr/share/container-tools/scripts && find -maxdepth 1 -not -type d -and -not -name 'default' -and -not -name 'debconf' -and -not -name '*.d' -printf '%P\n' | sort)"
db_subst open-infrastructure-container-tools/script SCRIPT_CHOICES "$(echo ${SCRIPT_CHOICES} | sed -e 's| |, |g')"
if [ -x /usr/bin/lsb_release ]
then
DISTRIBUTOR="$(lsb_release -is 2>/dev/null)"
fi
DISTRIBUTOR="${DISTRIBUTOR:-Debian}"
case "${DISTRIBUTOR}" in
Progress*)
SCRIPT_DEFAULT="progress-linux"
;;
*)
SCRIPT_DEFAULT="debian"
;;
esac
db_subst open-infrastructure-container-tools/script SCRIPT_DEFAULT "${SCRIPT_DEFAULT}"
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/script || true
db_go
fi
if [ -e "${CONFFILE}" ]
then
. ${CONFFILE} || true
db_set open-infrastructure-container-tools/irc "${IRK_TARGETS}"
fi
db_settitle open-infrastructure-container-tools/title
db_input low open-infrastructure-container-tools/irc || true
db_go
db_stop
|