From 4e5a30189bd9a88f760bba960af1e05732f22ace Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 18 May 2018 19:24:14 +0200 Subject: [PATCH] vagrant: use "vagrant" as username for new xenial box --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index b847d2e42..8f2da242d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -178,7 +178,7 @@ Vagrant.configure(2) do |config| v.memory = 1024 + $wmem end 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 "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant") 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) b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("xenial64")