vagrant-lxc 1.2.0 → 1.2.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +0 -4
- data/lib/vagrant-lxc/sudo_wrapper.rb +6 -2
- data/lib/vagrant-lxc/version.rb +1 -1
- data/locales/en.yml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f32c69313fa7841bc705a4d5c34886ef805a1683
|
|
4
|
+
data.tar.gz: 75f6f51414b4848ec43b2d1f8143d0826222af9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 855233099329744d0dbadaf3995ab20880482439cf6543b11099fa20d4ee591c804059a80ee9958f8c74c2c66a41aaf12e132898b36eeca59addbe1365e1975d
|
|
7
|
+
data.tar.gz: eb3e87438de2a701dc267891006e3e615cb0e28f35fe2e5eae75e89fd640d3b043bff592f94af7126d518fcbdb54cfd6ce808ff1940b1c72150a1bdc6b7ba47a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.2.1](https://github.com/fgrehm/vagrant-lxc/compare/v1.2.0...v1.2.1) (Sep 24, 2015)
|
|
2
|
+
|
|
3
|
+
BUGFIX:
|
|
4
|
+
- Fix sudo Wrapper [[GH-393]]
|
|
5
|
+
[GH-393]: https://github.com/fgrehm/vagrant-lxc/pull/393
|
|
6
|
+
|
|
1
7
|
## [1.2.0](https://github.com/fgrehm/vagrant-lxc/compare/v1.1.0...v1.2.0) (Sep 15, 2015)
|
|
2
8
|
|
|
3
9
|
FEATURES:
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -9,10 +9,6 @@ as an alternative to the built in VirtualBox provider for Linux hosts. Check out
|
|
|
9
9
|
[this blog post](http://fabiorehm.com/blog/2013/04/28/lxc-provider-for-vagrant/)
|
|
10
10
|
to see it in action.
|
|
11
11
|
|
|
12
|
-
## Help Needed!
|
|
13
|
-
|
|
14
|
-
This project is looking for maintainers, please see [GH-375](https://github.com/fgrehm/vagrant-lxc/issues/375) for more.
|
|
15
|
-
|
|
16
12
|
## Features
|
|
17
13
|
|
|
18
14
|
* Provides the same workflow as the Vagrant VirtualBox provider
|
|
@@ -13,8 +13,12 @@ module Vagrant
|
|
|
13
13
|
|
|
14
14
|
def run(*command)
|
|
15
15
|
options = command.last.is_a?(Hash) ? command.last : {}
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
if @wrapper_path && !options[:no_wrapper]
|
|
17
|
+
command.unshift @wrapper_path
|
|
18
|
+
execute *(['sudo'] + command)
|
|
19
|
+
else
|
|
20
|
+
execute *(['sudo', '/usr/bin/env'] + command)
|
|
21
|
+
end
|
|
18
22
|
end
|
|
19
23
|
|
|
20
24
|
private
|
data/lib/vagrant-lxc/version.rb
CHANGED
data/locales/en.yml
CHANGED
|
@@ -64,7 +64,7 @@ en:
|
|
|
64
64
|
another provider.
|
|
65
65
|
|
|
66
66
|
lxc_not_installed: |-
|
|
67
|
-
The `lxc` package does not seem to be installed or is not accessible on the PATH.
|
|
67
|
+
The `lxc` package does not seem to be installed or `lxc-create` is not accessible on the PATH.
|
|
68
68
|
|
|
69
69
|
lxc_redir_not_installed: |-
|
|
70
70
|
`redir` is not installed or is not accessible on the PATH.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-lxc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fabio Rehm
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Linux Containers provider for Vagrant
|
|
14
14
|
email:
|