vagrant: use "vagrant" as username for new xenial box

This commit is contained in:
Thomas Waldmann 2018-05-18 19:24:14 +02:00
parent 798cbf7a66
commit 4e5a30189b
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -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")