vagrant-persistent-storage 0.0.13 → 0.0.14
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49aa48cd90ca852b5e0cc6369f78176437e5b7a0
|
|
4
|
+
data.tar.gz: 5ed5a29f37142b14bd9a1f694ac5414e9940d81f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2014-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|