vagrant-persistent-storage 0.0.17 → 0.0.18

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: 62a64c3efa205a042b6e7ed82bbc9c61a2b8a7c7
4
- data.tar.gz: 90636f95b9fb203afde4b874a756c4cb28da70f1
3
+ metadata.gz: f87b6dda2b40ad1bc2f3e07c6e84504ac52852e0
4
+ data.tar.gz: b8e3ecfeb5615c480e54fec8ab45cae86caa3fcd
5
5
  SHA512:
6
- metadata.gz: d8aa8d558879989c18701bc56b33db03303e2c857d97ad3babbd398aae230acdad6864395711e5b19737bdc8ddcc18886e4fe0ac47ceb48764a07725877654d5
7
- data.tar.gz: e16bd8c1b74d949b262a845cc77b836f4712b79dbdd55d077dd8711b152dd1a768f7e8ad4aa05db2c24e971fcc0c6766e07898669d6010b14656a433564610fe
6
+ metadata.gz: e676cb3efb1dc2b6a37a8772aa8a38045fdf19029f97ea898a6751e6b09974945ccd676cc01d41a85c377c6050ea29e4f0ddf0ede807ee1126c5b7c3abe38995
7
+ data.tar.gz: b43b099bd13a83e00cdd2fe5c089505cca4d867c9c8c031803056abc4feb30b88fbfcb53221fc9dcdd983e476f34f1dc9f0a132504dd5e34b8e8dcf87794adde
data/README.md CHANGED
@@ -73,6 +73,7 @@ If your box are not using LVM you must set `config.persistent_storage.use_lvm =
73
73
  * [dsmaher](https://github.com/dsmaher)
74
74
  * [Marsup](https://github.com/Marsup)
75
75
  * [k2s](https://github.com/k2s)
76
+ * [vvavrychuk](https://github.com/vvavrychuk)
76
77
 
77
78
  ## TODO
78
79
 
@@ -9,6 +9,7 @@ module VagrantPlugins
9
9
  require_relative "action"
10
10
  require_relative "providers/virtualbox/driver/base"
11
11
  require_relative "providers/virtualbox/driver/meta"
12
+ require_relative "providers/virtualbox/driver/version_5_0"
12
13
 
13
14
  name "persistent_storage"
14
15
  description <<-DESC
@@ -0,0 +1,11 @@
1
+ module VagrantPlugins
2
+ module ProviderVirtualBox
3
+ module Driver
4
+ class Version_5_0
5
+ def attach_storage(location)
6
+ execute("storageattach", @uuid, "--storagectl", get_controller_name, "--port", "1", "--device", "0", "--type", "hdd", "--medium", "#{location}", "--hotpluggable", "on")
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module PersistentStorage
3
- VERSION = "0.0.17"
3
+ VERSION = "0.0.18"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-persistent-storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Kusnier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-30 00:00:00.000000000 Z
11
+ date: 2015-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -63,6 +63,7 @@ files:
63
63
  - lib/vagrant-persistent-storage/plugin.rb
64
64
  - lib/vagrant-persistent-storage/providers/virtualbox/driver/base.rb
65
65
  - lib/vagrant-persistent-storage/providers/virtualbox/driver/meta.rb
66
+ - lib/vagrant-persistent-storage/providers/virtualbox/driver/version_5_0.rb
66
67
  - lib/vagrant-persistent-storage/version.rb
67
68
  - locales/en.yml
68
69
  - sample-vm/.gitignore