vagrant-lxc 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d13771d03e03d167212fc77722f3a47c1c5a6b69
4
- data.tar.gz: 96ba8582b996a0e8edddfd41684925894e1e6534
3
+ metadata.gz: f32c69313fa7841bc705a4d5c34886ef805a1683
4
+ data.tar.gz: 75f6f51414b4848ec43b2d1f8143d0826222af9d
5
5
  SHA512:
6
- metadata.gz: 932f8882afd3af567c01f696fc4af60c5e6150e1b7c909dc6a8ef48ac6ed3d36407532c0053cfab626620d90c20c14f71bad6995cac5a0e301a490637d4ef827
7
- data.tar.gz: 6d9ede0184afdd8514bd091a72768562ced78e5c9debab0ca80e1f6eeedeee58dc2150cbd4f54f8d114dc2f101e076f23bb76d19aaa169b64cb377ffb1d328e4
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
@@ -46,7 +46,7 @@ GIT
46
46
  PATH
47
47
  remote: .
48
48
  specs:
49
- vagrant-lxc (1.2.0)
49
+ vagrant-lxc (1.2.1)
50
50
 
51
51
  GEM
52
52
  remote: https://rubygems.org/
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
- command.unshift @wrapper_path if @wrapper_path && !options[:no_wrapper]
17
- execute *(['sudo', '/usr/bin/env'] + command)
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
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module LXC
3
- VERSION = "1.2.0"
3
+ VERSION = "1.2.1"
4
4
  end
5
5
  end
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.0
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-16 00:00:00.000000000 Z
11
+ date: 2015-09-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Linux Containers provider for Vagrant
14
14
  email: