Skip to content

Commit

Permalink
Bugfix: Enable console output (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparsd authored Jan 2, 2019
1 parent bcb3186 commit 07f6d2d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ Vagrant.configure(2) do |config|
config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder projectPath, "/vagrant"

# Get rid of ubuntu-xenial-16.04-cloudimg-console.log
# Rename ubuntu-xenial-16.04-cloudimg-console.log to console.log.
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"]
vb.customize ["modifyvm", :id, "--uartmode1", "file", "console.log"]
end

config.vm.provision :shell,
path: File.join(localPath, 'scripts/vagrant/provision.sh')

config.vm.provision :shell,
path: File.join(localPath, 'scripts/vagrant/up.sh'),
config.vm.provision :shell,
path: File.join(localPath, 'scripts/vagrant/up.sh'),
run: "always"

end

0 comments on commit 07f6d2d

Please sign in to comment.