我的预置服务器安装文件使用名为 preseed/late_command 的 bash 脚本执行了许多附加任务。我希望在此过程中提示输入密码以正确安装 LDAP。我该如何以 debconf 风格执行此操作?
答案1
通常,通过 late_command 从种子文件运行的脚本无法与用户交互。如果需要交互,通常有三种选择:
1. Create a custom UDEB that interacts with debconf, and include it with the CD.
2. Create a 'firstrun' script that executes the first time the system boots, and disables itself on completion.
3. Access debconf directly within your script.
我个人使用“首次运行”方法并在安装后运行脚本。我没有使用过其他两种方法。