vagrant-persistent-storage 0.0.13 → 0.0.14

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: 759602c1db9e4c506b7ab8490677bef33d706298
4
- data.tar.gz: 0d11cc889c70e69e32f8ba9804ca3925b9384552
3
+ metadata.gz: 49aa48cd90ca852b5e0cc6369f78176437e5b7a0
4
+ data.tar.gz: 5ed5a29f37142b14bd9a1f694ac5414e9940d81f
5
5
  SHA512:
6
- metadata.gz: 690416da1c16126b504b705cce233be336ef72f2712ba15cf54b619019a507832a5cf0c66f0950cb26a16269299cc472dfd16d0cda4ff62b4a2d3fb3324573ec
7
- data.tar.gz: c3deb57309441d4f6790d148a745a02c4fc4b459cbfbf05125e904afff5f44b34a666ef99152b5bd4016f0a3f008696d675f94164642ab4ed7c7a2fbd9a8636d
6
+ metadata.gz: 1b60851a9f2873c8e592f24d58e1c5cab05d299b521de00c9e2220a963b479d4a21aa77c032182f4b3a478597f193376547df3dd3d9bc3ff38b9530b68be777d
7
+ data.tar.gz: d77523ed9eb57c6ccfa733c86db3d13c7570c94983c03a243523a5e07c43399af953affac12e43325cb135020e62e388e7aa6906277ba74da12b9b6ebdcfb83e
data/README.md CHANGED
@@ -42,6 +42,10 @@ The disk is initialized and added to it's own volume group as specfied in the co
42
42
  this defaults to 'vagrant'. An ext4 filesystem is created and the disk mounted appropriately,
43
43
  with entries added to fstab ... subsequent runs will mount this disk with the options specified
44
44
 
45
+ ## Troubleshooting
46
+
47
+ If your box are not using LVM you must set `config.persistent_storage.use_lvm = false`.
48
+
45
49
  ## Supported Providers
46
50
 
47
51
  * Only the VirtualBox provider is supported.
@@ -53,6 +57,7 @@ with entries added to fstab ... subsequent runs will mount this disk with the op
53
57
  * [Hiroya Ito](https://github.com/hiboma)
54
58
  * [joshuata](https://github.com/joshuata)
55
59
  * [Ciprian Zaharie](https://github.com/bucatzel)
60
+ * [aishahalim](https://github.com/aishahalim)
56
61
 
57
62
  ## TODO
58
63
 
@@ -25,7 +25,7 @@ module VagrantPlugins
25
25
 
26
26
  def detach_storage(location)
27
27
  persistent_storage = read_persistent_storage()
28
- if location and persistent_storage != "none" and identical_files(persistent_storage, location)
28
+ if location and persistent_storage and persistent_storage != "none" and identical_files(persistent_storage, location)
29
29
  execute("storageattach", @uuid, "--storagectl", get_controller_name, "--port", "1", "--device", "0", "--type", "hdd", "--medium", "none")
30
30
  end
31
31
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module PersistentStorage
3
- VERSION = "0.0.13"
3
+ VERSION = "0.0.14"
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.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Kusnier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-01 00:00:00.000000000 Z
11
+ date: 2014-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake