Sunday, May 5, 2024
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 2936  / 3 Years ago, thu, august 26, 2021, 5:38:05

The following config script inside control.tar.gz



#!/bin/sh -e

. /usr/share/debconf/confmodule

db_fset mailadmin/database_host seen false
db_clear
db_purge

db_input medium mailadmin/database_host || true
db_go

db_get mailadmin/database_host
echo "$RET" > /tmp/from_config_script.txt

exit 0


with the template



Template: mailadmin/database_host
Type: string
Description: The database server's host name or IP address.


(file templates) does not show an input dialog when I install the package using dpkg -i, and when I run it from the command line as well.



Instead it writes "localhost" to /tmp/from_config_script.txt, even though this default value is not part of the template file any more. I never ever saw the input popup. The input popup is what I am trying to achieve.



I removed the package with apt-get purge mailadmin, but even purge did not clear this default value. What can I do?


More From » package-management

 Answers
2

Simple solution:



db_input high ...


This is not mentioned in the tutorial at http://www.fifi.org ( http://www.fifi.org/doc/debconf-doc/tutorial.html ), only in an indirect manner.



A priority of medium is too low for showing the dialog. The threshold priority must be set somewhere on the computer. Unfortunately I still do not know where. But at least I know how to make the dialogs work.


[#24936] Saturday, August 28, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
pipeag

Total Points: 489
Total Questions: 107
Total Answers: 115

Location: Iraq
Member since Fri, Jun 5, 2020
4 Years ago
;