mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 11:52:32 +01:00
ensure noninteractive mode for debconf
This commit is contained in:
parent
0f5e5535d5
commit
8f381b6415
2
Vagrantfile
vendored
2
Vagrantfile
vendored
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user