Skip to content
Snippets Groups Projects
Verified Commit 8f381b64 authored by Jérôme Charaoui's avatar Jérôme Charaoui
Browse files

ensure noninteractive mode for debconf

parent 0f5e5535
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ Vagrant.configure("2") do |config| ...@@ -17,6 +17,7 @@ Vagrant.configure("2") do |config|
remote.vm.hostname = "bntest1" remote.vm.hostname = "bntest1"
remote.vm.network "private_network", ip: "192.168.181.5" remote.vm.network "private_network", ip: "192.168.181.5"
remote.vm.provision "shell", inline: <<-SHELL remote.vm.provision "shell", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen locale-gen
apt-get update apt-get update
...@@ -36,6 +37,7 @@ Vagrant.configure("2") do |config| ...@@ -36,6 +37,7 @@ Vagrant.configure("2") do |config|
local.vm.hostname = "bntest0" local.vm.hostname = "bntest0"
local.vm.network "private_network", ip: "192.168.181.4" local.vm.network "private_network", ip: "192.168.181.4"
local.vm.provision "shell", inline: <<-SHELL local.vm.provision "shell", inline: <<-SHELL
export DEBIAN_FRONTEND=noninteractive
echo "root: vagrant" >> /etc/aliases echo "root: vagrant" >> /etc/aliases
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen locale-gen
......
...@@ -24,7 +24,7 @@ if [ ! "$(which backupninja)" ]; then ...@@ -24,7 +24,7 @@ if [ ! "$(which backupninja)" ]; then
fi fi
# Install basic test dependencies # 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 # Create a temporary base directory
TMPDIR=$(mktemp -t -d bntest.XXXXXX) TMPDIR=$(mktemp -t -d bntest.XXXXXX)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment