From 1eed4e4465a93d26be3f9114c7fcbdf917a515e4 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 6 Apr 2018 23:35:58 +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 cfecc62b5..375a64cf4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -400,7 +400,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")