From 3457439a450e31e43d92f12e1b127b55cfa87786 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 24 Mar 2018 00:30:18 +0100 Subject: [PATCH] Vagrant: xenial64 box now uses username 'vagrant', fixes #3707 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 10f100f62..cf2aa3525 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -398,7 +398,7 @@ Vagrant.configure(2) do |config| b.vm.provider :virtualbox do |v| v.memory = 1024 + $wmem end - b.vm.provision "fs init", :type => :shell, :inline => fs_init("ubuntu") + b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant") b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("ubuntu") b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("xenial64") b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)