5

我成功地为 Ubuntu 创建了一个 .deb 安装文件,但我需要用户输入来完成安装后脚本的配置。这些问题是动态的,并且基于用户在其计算机上的界面。

有没有办法在使用 debconf 在 Ubuntu 软件中心的安装过程中提示用户具有动态答案的问题(即他们计算机上的接口列表)?

4

1 回答 1

4

知道了。在模板文件中,您创建一个替换变量并将其填充到配置文件中。

模板文件:

Template: pkg/interfaces
Type: select
Choices: ${choices}
Description: .....

配置文件:

declare -a options;
count=0;

## Get interfaces from the operating system
for interface in $(ip link show | awk '/^[0-9]/ {print $2;} ' | sed 's/:$//');
do
    if [ $interface != "lo" ] && [ $interface != "" ] ;
    then
        options[$count]=$interface;
        count=$((count+1));
    fi
done

# Set the choices the user has
db_subst pkg/outface choices $options
于 2015-08-16T04:24:23.877 回答