vagrantup 0.8.8 → 0.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 721253046f19412367171376649200f836c19f3c
4
- data.tar.gz: 85d1429358af9d8d89f73e5da8054935ae98fc32
3
+ metadata.gz: 2d6bae84086791b48b5209c92505e51147cf38e2
4
+ data.tar.gz: 22102f3b9b87a3eb74d4b576a821c660f6cc8aa1
5
5
  SHA512:
6
- metadata.gz: e2cc4d701f57849c3b714a4ea14d673c581bafb27b3f0b4fb0c4a1e52058b6e0f5003bc9e8f9b97961280693b9ed7cb3513a7f7229b9c3527a98f7331ff56d91
7
- data.tar.gz: fc18d54b52c5d5c4c07a402aab6ddbe6ae22cbf32184baddf93a141f9aff55c22f1b79e88357da39150ab5e3cdd37d2969ac1551f31902253a978eb310527497
6
+ metadata.gz: b3734dbeab11fbaef5b91f44c89791e4e600f5ff2e197cf0bf727291bb67179f1ea0bcac5142cfeea7e260769cf823bc2d6678327ed8ca5579562ef1ccb9c491
7
+ data.tar.gz: 51a46c90cf7697bd48439f75edbac09a641b22246acd58859bf8c5d9f0a89d6702d3ba11daeb3e07e488a0ae9bd3dbd5ddcb48bb967afa558f60e69d2b66585a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.8.9 (December 10, 2011)
2
+
3
+ - Revert the SSH tweaks made in 0.8.8. It affected stability
4
+ that I'd rather not test in a patch release.
5
+
1
6
  ## 0.8.8 (December 1, 2011)
2
7
 
3
8
  - Mount shared folders shortest to longest to avoid mounting
data/lib/vagrant/ssh.rb CHANGED
@@ -115,12 +115,7 @@ module Vagrant
115
115
 
116
116
  require 'timeout'
117
117
  Timeout.timeout(env.config.ssh.timeout) do
118
- execute(:timeout => env.config.ssh.timeout, :port => ssh_port) do |ssh|
119
- # We run a basic command to test that the shell is up and
120
- # ready to receive commands. Only then is our SSH connection
121
- # truly "up"
122
- return ssh.exec!("echo hello") == "hello\n"
123
- end
118
+ execute(:timeout => env.config.ssh.timeout, :port => ssh_port) { |ssh| }
124
119
  end
125
120
 
126
121
  false
@@ -2,5 +2,5 @@ module Vagrant
2
2
  # This will always be up to date with the current version of Vagrant,
3
3
  # since it is used to generate the gemspec and is also the source of
4
4
  # the version for `vagrant -v`
5
- VERSION = "0.8.8"
5
+ VERSION = "0.8.9"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrantup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.8
4
+ version: 0.8.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto