Vagrant: xenial64 box now uses username 'vagrant', fixes #3707

This commit is contained in:
Thomas Waldmann 2018-03-24 00:30:18 +01:00 committed by Milkey Mouse
parent 52be21c690
commit 53aae94a5a
No known key found for this signature in database
GPG Key ID: C6EF5A02F5647987
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -176,7 +176,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)