mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-24 03:41:11 +00:00
Imported 2.687
No reason for CPC update specified.
This commit is contained in:
parent
128aaa8bb3
commit
f7a4220cf8
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
livecd-rootfs (2.687) groovy; urgency=medium
|
||||
|
||||
[ Stanislav German-Evtushenko <giner> / John Chittum ]
|
||||
* Send Vagrant serial connection to NULL. (LP: #1874453)
|
||||
|
||||
-- Robert C Jennings <robert.jennings@canonical.com> Tue, 15 Sep 2020 15:25:19 -0500
|
||||
|
||||
livecd-rootfs (2.686) groovy; urgency=medium
|
||||
|
||||
[ Dan Streetman ]
|
||||
|
@ -154,8 +154,16 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
config.vm.provider "virtualbox" do |vb|
|
||||
vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ]
|
||||
# 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") ]
|
||||
# Create a NULL serial port to skip console logging by default
|
||||
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 defaul behavior for vagrant boxes.
|
||||
# As a workaround, we create a console connection to File:NULL. LP #1874453
|
||||
# This is overwriteable in user files to write to a local file
|
||||
end
|
||||
end
|
||||
EOF
|
||||
|
Loading…
x
Reference in New Issue
Block a user