我的系统配置脚本执行“apt-get install -y postfix”.不幸的是,当后缀安装程序显示配置屏幕时,脚本将暂停.是否有一种方法可以强制postfix在安装过程中使用默认值,以便自动脚本可以继续使用?
后缀安装程序是否可以检查/ etc / postfix中的现有配置,如果它存在,不会打扰配置屏幕的用户?
您可以使用debconf-set-selections命令预先设置pre-seeding,以便在安装软件包之前预先回答debconf提出的问题.
原文链接:https://www.f2er.com/ubuntu/348967.html例如:
debconf-set-selections <<< "postfix postfix/mailname string your.hostname.com" debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'" apt-get install -y postfix