5
インストール中にapt-get / aptitudeがダイアログを表示しないようにするにはどうすればよいですか?
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 …