Consegui contornar isso usando export DEBIAN_FRONTEND=noninteractive
antes de executar apt-get upgrade -y
.
Hoje tenho trabalhado na implantação automática de um servidor Ubuntu. Eu fiquei preso na atualização automática do servidor usando apt-get upgrade
tentando atualizar para um novo kernel. O log é assim:
Setting up linux-image-3.2.0-24-generic (3.2.0-24.39) ...
Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
(...)
Em seguida, uma pergunta é apresentada:
Package configuration
┌─────────────────────────────────┤ ├─────────────────────────────────┐
│ A new version of /boot/grub/menu.lst is available, but the version │
│ installed currently has been locally modified. │
│ │
│ What would you like to do about menu.lst? │
│ │
│ install the package maintainer's version │
│ keep the local version currently installed │
│ show the differences between the versions │
│ show a side-by-side difference between the versions │
│ show a 3-way difference between available versions │
│ do a 3-way merge between available versions (experimental) │
│ start a new shell to examine the situation │
│ │
│ │
│ <Ok> │
│ │
└──────────────────────────────────────────────────────────────────────┘
O resultado desejado seria selecionar a primeira opção e continuar:
Replacing config file /run/grub/menu.lst with new version
Updating /boot/grub/menu.lst ... done
Depois de executar a atualização manualmente, usei debconf-get-selections
para inspecionar a resposta correta da pergunta ( consulte outras configurações ). Parece que update_grub_changeprompt_threeway
é a questão que deve ser respondida. No entanto, definir isso usando debconf-set-selections
me apresentou a mesma pergunta:
debconf-set-selections <<< "grub grub/update_grub_changeprompt_threeway select install_new"
apt-get -y dist-upgrade
Como essa pergunta pode ser automatizada?
Consegui contornar isso usando export DEBIAN_FRONTEND=noninteractive
antes de executar apt-get upgrade -y
.
No Ubuntu 16.04, esta sequência deve evitar o diálogo interativo:
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get upgrade -yq
Observe que o sinal -q
é importante.
(Referência: Esta questão em devops)