ensure noninteractive mode for debconf

This commit is contained in:
Jérôme Charaoui 2023-02-12 12:13:07 -05:00
parent 0f5e5535d5
commit 8f381b6415
No known key found for this signature in database
GPG Key ID: 69C52F658E988542
2 changed files with 3 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -17,6 +17,7 @@ Vagrant.configure("2") do |config|
remote.vm.hostname = "bntest1"
remote.vm.network "private_network", ip: "192.168.181.5"
remote.vm.provision "shell", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
apt-get update
@ -36,6 +37,7 @@ Vagrant.configure("2") do |config|
local.vm.hostname = "bntest0"
local.vm.network "private_network", ip: "192.168.181.4"
local.vm.provision "shell", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive
echo "root: vagrant" >> /etc/aliases
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen

View File

@ -24,7 +24,7 @@ if [ ! "$(which backupninja)" ]; then
fi
# Install basic test dependencies
apt-get -qq install bats mailutils faketime crudini
DEBIAN_FRONTEND=noninteractive apt install -y bats mailutils faketime crudini
# Create a temporary base directory
TMPDIR=$(mktemp -t -d bntest.XXXXXX)