LinodeにUbuntu 12.04サーバーを展開するためにAnsible Playbookを作成しようとしていますが、問題はUbuntuのようです。apt-getまたはaptitudeのさまざまな組み合わせを実行すると、応答する必要がある次のダイアログが常に表示されます。
自動展開を中断しないように、コマンドラインからこれに回答してほしい。何か案は?
私の現在のコマンドは以下です。DEBIAN_FRONTENDを設定しようとしていることに注意してください。
#!/bin/bash
echo 'DEBIAN_FRONTEND="noninteractive"' >> /etc/profile
echo 'DEBIAN_FRONTEND="noninteractive"' >> ~/.profile
source /etc/profile
source ~/.profile
# This next line is the one that pops up the dialog
sudo aptitude -y install iptables-persistent
# Need this to fix an issue with the package post-install (this works fine.)
sudo sed \
-i 's/\(modprobe -q ip6\?table_filter\)/\1 || true/g' \
/var/lib/dpkg/info/iptables-persistent.postinst; \
sudo aptitude install iptables-persistent