vagrant: Use dummy file for the console output

Links:
- https://bugs.launchpad.net/cloud-images/+bug/1874453
raspi-desktop-1
Stanislav German-Evtushenko 4 years ago committed by John Chittum
parent 10dae25655
commit b0144d3018
No known key found for this signature in database
GPG Key ID: FC52138B0F49EA8E

@ -154,8 +154,10 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ] vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ]
# Creating a console log file is not an expected behavior for vagrant boxes. LP #1777827 # Creating a console log file is not an expected behavior for vagrant boxes. LP #1777827
# vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "${prefix}-console.log") ] #vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "${prefix}-console.log") ]
# Use dummy file for the console output. LP #1874453
vb.customize [ "modifyvm", :id, "--uartmode1", "file", File::NULL ]
end end
end end
EOF EOF

Loading…
Cancel
Save