vagrant-tun 0.0.2 → 0.0.3
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.
- data/README.md +3 -3
- data/lib/vagrant-tun/command.rb +1 -1
- data/lib/vagrant-tun/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -47,13 +47,13 @@ $ make test
|
|
|
47
47
|
```
|
|
48
48
|
$ make
|
|
49
49
|
rake build
|
|
50
|
-
vagrant-tun 0.0.
|
|
50
|
+
vagrant-tun 0.0.3 built to pkg/vagrant-tun-0.0.3.gem.
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
### Install the built gemfile
|
|
54
54
|
```
|
|
55
55
|
$ make install
|
|
56
56
|
find pkg/ -name '*.gem' | head -n 1 | xargs vagrant plugin install
|
|
57
|
-
Installing the 'pkg/vagrant-tun-0.0.
|
|
58
|
-
Installed the plugin 'vagrant-tun (0.0.
|
|
57
|
+
Installing the 'pkg/vagrant-tun-0.0.3.gem' plugin. This can take a few minutes...
|
|
58
|
+
Installed the plugin 'vagrant-tun (0.0.3)'!
|
|
59
59
|
```
|
data/lib/vagrant-tun/command.rb
CHANGED
|
@@ -81,7 +81,7 @@ module VagrantTun
|
|
|
81
81
|
|
|
82
82
|
def reboot(env)
|
|
83
83
|
env[:ui].info("Rebooting because we couldn't load the tun module. Maybe the kernel was updated?")
|
|
84
|
-
env[:machine].action(:reload)
|
|
84
|
+
env[:machine].action(:reload, :provision_enabled => false)
|
|
85
85
|
begin
|
|
86
86
|
sleep 1
|
|
87
87
|
end until env[:machine].communicate.ready?
|
data/lib/vagrant-tun/version.rb
CHANGED