如何生成可与 apt-get 或 aptitude 一起使用的响应文件?

如何生成可与 apt-get 或 aptitude 一起使用的响应文件?

我需要通过 puppet 安装 exim4。由于此安装需要交互式配置,所以我需要一个响应文件,但我不知道如何生成响应文件。那么,我该如何生成响应文件?

答案1

使用debconf-设置-选择在运行 apt-get 之前预填充配置数据库。您可以在已配置的系统上使用 debconf-get-selections(在 debconf-utils 中)来查看需要设置的内容。另外请记住,对于 exim,您实际需要配置的软件包是 exim4-config。

debconf-get-selections | grep exim4-config
exim4-config    exim4/dc_noalias_regenerate boolean false
exim4-config    exim4/dc_smarthost  string  
...

也可以看看http://wiki.debian.org/DebianInstaller/Preseed

相关内容