vagrant-persistent-storage 0.0.49 → 0.0.50
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e419e5f35ab1d075c95917b0570876f95f6d6396f63c4b4f6ca12a9a1b2702e
|
4
|
+
data.tar.gz: d18e935b505fb263c84a591ecefc6481b64c595cb246ffac4685eb366c7478c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46a426753fa91cf5d33cfde6f3e16547a67876c8c981fd8103c17b910e86e15454481f366ae565952caaeda3b066a670fbd7713f5e44bc67d43aaf9b0798fcc7
|
7
|
+
data.tar.gz: 852a8ccc57050102bef869698d4a0d8099c21cd03cf374fb426286062c85018e593ca62d81fe0a07d32706a684d17abb4df47c707070ef2b4d42adfeede530e1
|
data/README.md
CHANGED
@@ -125,6 +125,7 @@ If your box is not using LVM you must set `config.persistent_storage.use_lvm = f
|
|
125
125
|
* [Dimitris Aragiorgis](https://github.com/dimara)
|
126
126
|
* [Symaxion](https://github.com/Symaxion)
|
127
127
|
* [Alex Pyrgiotis](https://github.com/apyrgio)
|
128
|
+
* [qdetweiler](https://github.com/qdetweiler)
|
128
129
|
|
129
130
|
## TODO
|
130
131
|
|
@@ -17,7 +17,7 @@ module VagrantPlugins
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def remove_prefix(vbox_version)
|
20
|
-
return vbox_version.start_with?("4.3") || vbox_version.start_with?("5.") || vbox_version.start_with?("6.")
|
20
|
+
return vbox_version.start_with?("4.3") || vbox_version.start_with?("5.") || vbox_version.start_with?("6.")|| vbox_version.start_with?("7.")
|
21
21
|
end
|
22
22
|
|
23
23
|
def create_storage(location, size, variant)
|
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.50
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastian Kusnier
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -77,7 +77,7 @@ homepage: https://github.com/kusnier/vagrant-persistent-storage
|
|
77
77
|
licenses:
|
78
78
|
- MIT
|
79
79
|
metadata: {}
|
80
|
-
post_install_message:
|
80
|
+
post_install_message:
|
81
81
|
rdoc_options: []
|
82
82
|
require_paths:
|
83
83
|
- lib
|
@@ -92,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
|
-
rubygems_version: 3.0.3
|
96
|
-
signing_key:
|
95
|
+
rubygems_version: 3.0.3.1
|
96
|
+
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: A Vagrant plugin that creates a persistent storage and attaches it to guest
|
99
99
|
machine.
|