vagrant-lxc 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/vagrant-lxc/action/forward_ports.rb +4 -2
- data/lib/vagrant-lxc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b9bb037d03a6aea1bdc901bbf62a7829461f0be
|
4
|
+
data.tar.gz: 83a7cba30a46a536ef30844e9de0a66751554634
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20fdc6c3d3a915661720a30394e8d0b7acfd162f080a2c2a447af71cd1e9e280aa6154ac8fd7e61eef6b1f758bb2396700401e33c584eaf09e6af9bd039cfa12
|
7
|
+
data.tar.gz: 74ef01c112c43bfce60403a09952721b3d17fe22f7c893a095314a7b3b3876e6f6a5128a009253875d5e00ac5e92767b9f98e703a5f26d617bc01a5041f6f26f
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
## [0.3.
|
1
|
+
## [0.3.2](https://github.com/fgrehm/vagrant-lxc/compare/v0.3.1...v0.3.2) (April 18, 2013)
|
2
|
+
|
3
|
+
- Do not display port forwarding message in case no forwarded ports were set
|
4
|
+
|
5
|
+
## [0.3.1](https://github.com/fgrehm/vagrant-lxc/compare/v0.3.0...v0.3.1) (April 18, 2013)
|
2
6
|
|
3
7
|
- Improved output to match lxc "verbiage"
|
4
8
|
|
data/Gemfile.lock
CHANGED
@@ -24,8 +24,10 @@ module Vagrant
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
-
env[:
|
28
|
-
|
27
|
+
if @env[:forwarded_ports].any?
|
28
|
+
env[:ui].info I18n.t("vagrant.actions.vm.forward_ports.forwarding")
|
29
|
+
forward_ports
|
30
|
+
end
|
29
31
|
end
|
30
32
|
|
31
33
|
def forward_ports
|
data/lib/vagrant-lxc/version.rb
CHANGED