vagrant-cachier 0.3.2 → 0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aa1898e86e3760ce3e427d1d46ec53f4240a7f61
4
- data.tar.gz: d0e4b10327abed29d0b4a4ac68e724f7a9eeb780
3
+ metadata.gz: 447f8c66ad65b17a8bc2cc5a63b238bc1879868a
4
+ data.tar.gz: a3f75f32e121e33d545a5c5f3cc0c6fee5126462
5
5
  SHA512:
6
- metadata.gz: 25080e62dcbb8421053c858f5961415e88592de246a822f3909e23dc12609df91a181abd29a817e10c0d58d4d29bae4da7d7bef2d65ae38d00e7029c4a02d1f0
7
- data.tar.gz: c3f6801886da3fa6e959deb9bfd59ddba73e9bcc711178ce3d301af59a241d41e7dfec53430ca4106326f1481d9cbe4e842d8f0d92496413c16d739c23949dbe
6
+ metadata.gz: 092fae1c133849f86db12eb0f0b05f29d11d74b43b58bba425993ccddda8fc05fc4118d26ea2b66822eb0147df7a47523706db482ee1fd859d1bb9b4ce47e627
7
+ data.tar.gz: 8bdefb1e24bbb057f98a2c21f6bb0d22c55bfc7decf5af34dc910b4e90599380d2bcc61520668bcaa5c16faf1ea9444a3102662b5f6ac374101e68c67889e070
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.3.3](https://github.com/fgrehm/vagrant-cachier/compare/v0.3.2...v0.3.3) (Sep 11, 2013)
2
+
3
+ BUG FIXES:
4
+
5
+ - Automatically create `partial` dir under apt cache bucket dir to allow usage
6
+ on Ubuntu 10.04 guests [GH-40]
7
+
1
8
  ## [0.3.2](https://github.com/fgrehm/vagrant-cachier/compare/v0.3.1...v0.3.2) (Aug 14, 2013)
2
9
 
3
10
  BUG FIXES:
data/Gemfile CHANGED
@@ -4,9 +4,10 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :development do
7
- gem 'vagrant', github: 'mitchellh/vagrant'
8
- gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc'
9
- gem 'vagrant-pristine', github: 'fgrehm/vagrant-pristine'
7
+ gem 'vagrant', github: 'mitchellh/vagrant'
8
+ gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc'
9
+ gem 'vagrant-pristine', github: 'fgrehm/vagrant-pristine'
10
+ gem 'vagrant-global-status', github: 'fgrehm/vagrant-global-status'
10
11
  gem 'vagrant-librarian-chef'
11
12
  gem 'vagrant-omnibus'
12
13
  gem 'rake'
data/Gemfile.lock CHANGED
@@ -1,3 +1,9 @@
1
+ GIT
2
+ remote: git://github.com/fgrehm/vagrant-global-status.git
3
+ revision: 860a7ce70ff4596621af492e47eace5631f47324
4
+ specs:
5
+ vagrant-global-status (0.1.0)
6
+
1
7
  GIT
2
8
  remote: git://github.com/fgrehm/vagrant-lxc.git
3
9
  revision: 5ae82681cdedaf2a6f778e005dd65014fc7c2cec
@@ -25,7 +31,7 @@ GIT
25
31
  PATH
26
32
  remote: .
27
33
  specs:
28
- vagrant-cachier (0.3.2)
34
+ vagrant-cachier (0.3.3)
29
35
 
30
36
  GEM
31
37
  remote: https://rubygems.org/
@@ -101,6 +107,7 @@ DEPENDENCIES
101
107
  rake
102
108
  vagrant!
103
109
  vagrant-cachier!
110
+ vagrant-global-status!
104
111
  vagrant-librarian-chef
105
112
  vagrant-lxc!
106
113
  vagrant-omnibus
data/README.md CHANGED
@@ -119,7 +119,7 @@ Vagrant.configure("2") do |config|
119
119
  end
120
120
  ```
121
121
 
122
- This will tell vagrant-cachier to download packages to `.vagrant/machines/<machine-name>/<provider-name>/cache`
122
+ This will tell vagrant-cachier to download packages to `.vagrant/machines/<machine-name>/cache`
123
123
  on your current project directory.
124
124
 
125
125
 
@@ -58,6 +58,11 @@ Vagrant.configure("2") do |config|
58
58
  debian_like_configs.call ubuntu
59
59
  end
60
60
 
61
+ config.vm.define :lucid do |lucid|
62
+ lucid.vm.box = "lucid64"
63
+ debian_like_configs.call lucid
64
+ end
65
+
61
66
  config.vm.define :debian do |debian|
62
67
  debian.vm.box = "squeeze64"
63
68
  debian.vm.box_url = 'http://f.willianfernandes.com.br/vagrant-boxes/DebianSqueeze64.box'
@@ -16,7 +16,7 @@ module VagrantPlugins
16
16
  @env[:cache_dirs] << guest_path
17
17
 
18
18
  machine.communicate.tap do |comm|
19
- comm.execute("mkdir -p /tmp/vagrant-cache/#{@name}")
19
+ comm.execute("mkdir -p /tmp/vagrant-cache/#{@name}/partial")
20
20
  unless comm.test("test -L #{guest_path}")
21
21
  comm.sudo("rm -rf #{guest_path}")
22
22
  comm.sudo("mkdir -p `dirname #{guest_path}`")
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Cachier
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-cachier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
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-08-15 00:00:00.000000000 Z
11
+ date: 2013-09-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Speed up vagrant boxes provisioning
14
14
  email:
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  version: '0'
77
77
  requirements: []
78
78
  rubyforge_project:
79
- rubygems_version: 2.0.0
79
+ rubygems_version: 2.0.7
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: Speed up vagrant boxes provisioning