config is in openerp6.1-full 6.1-1+dfsg-0ubuntu3.
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 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input high openerp6.1-full/install_type || true
db_go
db_get openerp6.1-full/install_type || true
# questions depending on result
if [ "${RET}" = "local" ];then
exit 0
fi
# questions for remote host
db_input high openerp6.1-full/install_host || true
db_input high openerp6.1-full/install_port || true
db_input high openerp6.1-full/install_user || true
db_input high openerp6.1-full/install_password || true
db_go
|