vagrant-lxc 0.3.4 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +34 -14
- data/Gemfile +5 -4
- data/Gemfile.lock +33 -21
- data/Guardfile +4 -15
- data/README.md +76 -158
- data/boxes/common/lxc-template +229 -0
- data/boxes/common/lxc.conf +49 -0
- data/boxes/common/metadata.json +4 -0
- data/boxes/debian/finalize +195 -0
- data/boxes/debian/lxc-template +13 -9
- data/boxes/ubuntu/finalize +368 -0
- data/boxes/ubuntu/lxc-template +1 -2
- data/development/Vagrantfile +10 -6
- data/development/site.pp +1 -1
- data/example/Vagrantfile +13 -22
- data/lib/vagrant-lxc/action/boot.rb +2 -0
- data/lib/vagrant-lxc/action/create.rb +1 -0
- data/lib/vagrant-lxc/action/handle_box_metadata.rb +15 -2
- data/lib/vagrant-lxc/action/setup_package_files.rb +3 -0
- data/lib/vagrant-lxc/driver.rb +4 -2
- data/lib/vagrant-lxc/driver/cli.rb +7 -2
- data/lib/vagrant-lxc/errors.rb +2 -2
- data/lib/vagrant-lxc/version.rb +1 -1
- data/locales/en.yml +9 -1
- data/spec/Vagrantfile +1 -4
- data/spec/acceptance/sanity_check_spec.rb +1 -4
- data/spec/unit/action/clear_forwarded_ports_spec.rb +4 -3
- data/spec/unit/action/compress_rootfs_spec.rb +5 -5
- data/spec/unit/action/forward_ports_spec.rb +5 -5
- data/spec/unit/action/handle_box_metadata_spec.rb +5 -5
- data/spec/unit/action/setup_package_files_spec.rb +32 -14
- data/spec/unit/driver/cli_spec.rb +4 -2
- data/spec/unit/driver_spec.rb +13 -11
- data/tasks/boxes.rake +26 -96
- data/tasks/boxes.v2.rake +181 -0
- metadata +8 -2
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: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabio Rehm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Linux Containers provider for Vagrant
|
14
14
|
email:
|
@@ -32,10 +32,15 @@ files:
|
|
32
32
|
- boxes/common/install-babushka
|
33
33
|
- boxes/common/install-chef
|
34
34
|
- boxes/common/install-puppet
|
35
|
+
- boxes/common/lxc-template
|
36
|
+
- boxes/common/lxc.conf
|
37
|
+
- boxes/common/metadata.json
|
35
38
|
- boxes/debian/download
|
39
|
+
- boxes/debian/finalize
|
36
40
|
- boxes/debian/lxc-template
|
37
41
|
- boxes/debian/metadata.json.template
|
38
42
|
- boxes/ubuntu/download
|
43
|
+
- boxes/ubuntu/finalize
|
39
44
|
- boxes/ubuntu/lxc-template
|
40
45
|
- boxes/ubuntu/metadata.json.template
|
41
46
|
- development/Vagrantfile
|
@@ -100,6 +105,7 @@ files:
|
|
100
105
|
- spec/unit/support/unit_example_group.rb
|
101
106
|
- spec/unit_helper.rb
|
102
107
|
- tasks/boxes.rake
|
108
|
+
- tasks/boxes.v2.rake
|
103
109
|
- tasks/spec.rake
|
104
110
|
- vagrant-lxc.gemspec
|
105
111
|
homepage: https://github.com/fgrehm/vagrant-lxc
|