ฉันกำลังพยายามสร้าง Ansible Playbook เพื่อปรับใช้เซิร์ฟเวอร์ Ubuntu 12.04 บางตัวใน Linode แต่ปัญหาของฉันดูเหมือนจะเป็น 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