我想在我的 debian 包中使用 debconf 来获取一些用户输入。我有一个 debian/config 文件:
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_fset dn-native-drivers/choose_port seen false
db_clear
db_purge
db_input critical dn-native-drivers/choose_port || true
db_go
和一个 debian/templates 文件:
Template: dn-native-drivers/choose_port
Type: string
Default: 50
Description: Which vcom-port should be used?
The port can be changed later in /etc/dn with the property
vcom.nativePort
当我自己调用配置脚本时,它只是在做我想做的事情(显示debconf
问题),但是当我用它构建包dpkg-buildpackage -us -uc
然后安装它时,dpkg -i packagename
没有显示问题。我检查了配置和模板文件是否在 control.tar.gz 中并且它们在那里。如果这很重要,我会使用 raspbian。为什么我的控制脚本在安装过程中没有被调用?