Debian

如何生成與 apt-get 或 aptitude 一起使用的響應文件?

  • January 9, 2013

我需要通過 puppet 安裝 exim4。因為這個安裝需要互動配置,所以需要一個響應文件,但是不知道怎么生成。那麼,如何生成響應文件?

在執行 apt-get 之前,使用debconf-set-selections預填充配置數據庫。您可以在已配置的系統上使用 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

引用自:https://serverfault.com/questions/228266