From 467b8c9c0679ad47816dbefe3f5cd0e44b6d9b74 Mon Sep 17 00:00:00 2001 From: Christopher Glass Date: Fri, 25 Aug 2017 12:59:53 +0200 Subject: [PATCH] Reset the default SSH user to being vagrant. Using "vagrant ssh" is confusing otherwise. --- live-build/ubuntu-cpc/hooks/042-vagrant.binary | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/live-build/ubuntu-cpc/hooks/042-vagrant.binary b/live-build/ubuntu-cpc/hooks/042-vagrant.binary index 1f9e5de5..01895872 100755 --- a/live-build/ubuntu-cpc/hooks/042-vagrant.binary +++ b/live-build/ubuntu-cpc/hooks/042-vagrant.binary @@ -167,8 +167,8 @@ load include_vagrantfile if File.exist?(include_vagrantfile) ## We also have an "ubuntu" user with pass "${ubuntu_user_pass}" Vagrant.configure("2") do |config| config.vm.base_mac = "${macaddr}" - config.ssh.username = "ubuntu" - config.ssh.password = "${ubuntu_user_pass}" + config.ssh.username = "vagrant" + config.ssh.password = "vagrant" config.vm.provider "virtualbox" do |vb| vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ]