Package: vagrant / 1.9.1+dfsg-1+deb9u2

Metadata

Package Version Patches format
vagrant 1.9.1+dfsg-1+deb9u2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Disable Checkpoint.patch | (download)

lib/vagrant/environment.rb | 38 2 + 36 - 0 !
plugins/commands/version/command.rb | 29 0 + 29 - 0 !
2 files changed, 2 insertions(+), 65 deletions(-)

 disable checkpoint

We don't want vagrant phoning home all the time

0002 bin vagrant silence warning about installer.patch | (download)

bin/vagrant | 5 0 + 5 - 0 !
1 file changed, 5 deletions(-)

 bin/vagrant: silence warning about installer


0003 Use a private temporary dir.patch | (download)

lib/vagrant/box.rb | 3 2 + 1 - 0 !
lib/vagrant/util.rb | 1 1 + 0 - 0 !
lib/vagrant/util/tempfile.rb | 39 39 + 0 - 0 !
3 files changed, 42 insertions(+), 1 deletion(-)

 use a private temporary dir

Without this vagrant will clutter $TMPDIR with dozens of even hundreds
of temporary files (~4 per vagrant invocation).

0004 linux cap halt don t wait for shutdown h now to fini.patch | (download)

plugins/guests/linux/cap/halt.rb | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 linux/cap/halt: don't wait for `shutdown -h now` to finish

When running a Debian 8 lxc guest (with the vagrant-lxc plugin), which
has systemd as init system, `vagrant halt` will hang waiting for
`shutdown -h now` to return.

0005 Support system installed plugins.patch | (download)

lib/vagrant/plugin/manager.rb | 4 2 + 2 - 0 !
lib/vagrant/plugin/state_file.rb | 22 21 + 1 - 0 !
2 files changed, 23 insertions(+), 3 deletions(-)

 support system-installed plugins

Plugins must be installed as regular Ruby libraries, and they must
contain /usr/share/vagrant-plugins/plugins.d/$PLUGINNAME.json with the
following content:

{
  "${PLUGINNAME}": {
    "ruby_version":"$(ruby -e 'puts RUBY_VERSION')",
    "vagrant_version":"$(cat /usr/share/vagrant/version.txt)",
    "gem_version":"",
    "require":"",
    "sources":[]
  }
}

0006 Relax dependency resolution.patch | (download)

Gemfile | 6 0 + 6 - 0 !
vagrant.gemspec | 45 15 + 30 - 0 !
2 files changed, 15 insertions(+), 36 deletions(-)

 relax dependency resolution


0007 Update command.rb.patch | (download)

plugins/commands/package/command.rb | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 update command.rb

Issue #8159

while using:
$ vagrant package --base ${VIRTUALBOXNAME}

this error occurs:

/usr/share/rubygems-integration/all/gems/vagrant-1.9.0/plugins/commands/package/command.rb:59:in `package_base': uninitialized constant VagrantPlugins::CommandPackage::Command::SecureRandom (NameError)
Did you mean?  SecureRandom
        from /usr/share/rubygems-integration/all/gems/vagrant-1.9.0/plugins/commands/package/command.rb:42:in `execute'
        from /usr/share/rubygems-integration/all/gems/vagrant-1.9.0/lib/vagrant/cli.rb:42:in `execute'
        from /usr/share/rubygems-integration/all/gems/vagrant-1.9.0/lib/vagrant/environment.rb:274:in `cli'
        from /usr/share/rubygems-integration/all/gems/vagrant-1.9.0/bin/vagrant:118:in `<top (required)>'
        from /usr/bin/vagrant:22:in `load'
        from /usr/bin/vagrant:22:in `<main>'

0008 Convert atlas references to vagrant cloud.patch | (download)

lib/vagrant/shared_helpers.rb | 4 2 + 2 - 0 !
plugins/commands/box/command/add.rb | 2 1 + 1 - 0 !
plugins/commands/login/client.rb | 21 12 + 9 - 0 !
plugins/commands/login/command.rb | 8 4 + 4 - 0 !
plugins/commands/login/locales/en.yml | 10 5 + 5 - 0 !
plugins/commands/login/middleware/add_authentication.rb | 3 2 + 1 - 0 !
plugins/commands/login/plugin.rb | 2 1 + 1 - 0 !
templates/commands/init/Vagrantfile.erb | 9 1 + 8 - 0 !
templates/locales/en.yml | 8 4 + 4 - 0 !
test/unit/plugins/commands/login/client_test.rb | 4 2 + 2 - 0 !
10 files changed, 34 insertions(+), 37 deletions(-)

 convert atlas references to vagrant cloud

Backported-by: Antonio Terceiro <terceiro@debian.org>

0009 Backport support for VirtualBox 5.2.patch | (download)

plugins/providers/virtualbox/driver/meta.rb | 1 1 + 0 - 0 !
plugins/providers/virtualbox/driver/version_5_2.rb | 16 16 + 0 - 0 !
plugins/providers/virtualbox/plugin.rb | 1 1 + 0 - 0 !
3 files changed, 18 insertions(+)

 backport support for virtualbox 5.2

Signed-off-by: Antonio Terceiro <terceiro@debian.org>