|
|
@ -154,8 +154,16 @@ 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
|
|
|
|
# Create a NULL serial port to skip console logging by default
|
|
|
|
# vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "${prefix}-console.log") ]
|
|
|
|
vb.customize [ "modifyvm", :id, "--uartmode1", "file", File::NULL ]
|
|
|
|
|
|
|
|
# If console logging is desired, uncomment this line and remove prior
|
|
|
|
|
|
|
|
# vb.customize [ "modifyvm", :id, "--uartmode1", "file", File.join(Dir.pwd, "${prefix}-console.log") ]
|
|
|
|
|
|
|
|
# Ubuntu cloud images, by default, enable console=ttyS0. This enables serial consoles to
|
|
|
|
|
|
|
|
# connect to the images. With the change related to LP #1777827, removing a serial
|
|
|
|
|
|
|
|
# file logger, Vagrant image boot times increased and now run greater than 5 minutes
|
|
|
|
|
|
|
|
# Creating a console log file is not an expected default behavior for vagrant boxes.
|
|
|
|
|
|
|
|
# As a workaround, we create a console connection to File:NULL. LP #1874453
|
|
|
|
|
|
|
|
# This is overrideable in user files to write to a local file
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
EOF
|
|
|
|