vagrant-persistent-storage 0.0.23 → 0.0.24

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: 8edd6f702d70d9061ccb62d21f84441cc3a7e370
4
- data.tar.gz: 41083568ed74775973783902fc5111807ed4473d
3
+ metadata.gz: e87d70296231d549440570164175aee787cb126e
4
+ data.tar.gz: e1b0bb5eca27c70e5d8b25f2f7dd29fa5e448ff5
5
5
  SHA512:
6
- metadata.gz: 7054e1aaaf9006010d3e8e073f5c0b97f2bb924931860ea02b8559d161fbdcdc8ba11709aa165d89f32e860259decfd5a1b1b2b009c47abb312b3fe5fc58199c
7
- data.tar.gz: 65fdf68a5b704268d6ba24433bccabbcdf0760d173dfeb7f01c14eecc73ddecea33d27fb65bdc27f6244583f397f2ac4aa2662c16d54c8c14d52c5d78458d98c
6
+ metadata.gz: 4dc4b2a63998f2d8818f9ac92764639be1f7de9f98b88005f8f97fb4cd4d096a1351237a2d583de4b5cd7d0056f6341c516c45bb3fe4f666ffe4b664f632bfc7
7
+ data.tar.gz: a5c9d6b5528f6de18e5ebe51782b32078cb3c2ff8d087248df9dbc69d7a9a2837a4c6401f54ce5f8d8053a614fec2d944333595f5ca61424f07e8442f809709e
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # Vagrant::Persistent-Storage
2
2
 
3
-
4
3
  A Vagrant plugin that creates a persistent storage and attaches it to guest machine.
5
4
 
5
+ Requires Virtualbox 5
6
+
6
7
  ## Installation
7
8
 
8
9
  $ vagrant plugin install vagrant-persistent-storage
@@ -29,7 +29,7 @@ module VagrantPlugins
29
29
  location_realpath = File.expand_path(location)
30
30
 
31
31
  if controller_name.start_with?("IDE")
32
- execute("storageattach", @uuid, "--storagectl", get_controller_name, "--port", "2", "--device", "0", "--type", "hdd", "--medium", "#{location_realpath}")
32
+ execute("storageattach", @uuid, "--storagectl", get_controller_name, "--port", "1", "--device", "0", "--type", "hdd", "--medium", "#{location_realpath}")
33
33
  elsif controller_name.start_with?("SCSI")
34
34
  execute("storageattach", @uuid, "--storagectl", get_controller_name, "--port", "15", "--device", "0", "--type", "hdd", "--medium", "#{location_realpath}")
35
35
  else
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module PersistentStorage
3
- VERSION = "0.0.23"
3
+ VERSION = "0.0.24"
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.23
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Kusnier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-14 00:00:00.000000000 Z
11
+ date: 2016-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake