vagrant-persistent-storage 0.0.47 → 0.0.48
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 +5 -5
- data/README.md +1 -0
- data/lib/vagrant-persistent-storage/manage_storage.rb +1 -1
- data/lib/vagrant-persistent-storage/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 9b2fdbe71f4317552272c4a3763d1e8bd5f98dd38bd54c28eea188dc3cfa6eb5
|
|
4
|
+
data.tar.gz: 6e8b86f309aa085be92810b37e85d3578480935a34d8c843d396fdd8fd085cd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4bf0725cb73422ac9fdbd0042b2b6898c75e41d7aaa2bae9831f40d10a14cf778664fb2e32c7765b1965f1961a24d7e306effa9503fd9d8711fe2369e47cbf11
|
|
7
|
+
data.tar.gz: 569058fb3a18680ab9bf6d7573a0b768c94c278abc101d149e81c164ae9b244338e8231a9abf936367e39dd0bd8e276308e838883e9932520c29e38972fae7f9
|
data/README.md
CHANGED
|
@@ -114,6 +114,7 @@ If your box is not using LVM you must set `config.persistent_storage.use_lvm = f
|
|
|
114
114
|
* [caio2k](https://github.com/caio2k)
|
|
115
115
|
* [Francesco](https://github.com/cisco87)
|
|
116
116
|
* [Dimitris Aragiorgis](https://github.com/dimara)
|
|
117
|
+
* [Symaxion](https://github.com/Symaxion)
|
|
117
118
|
|
|
118
119
|
## TODO
|
|
119
120
|
|
|
@@ -66,7 +66,7 @@ module VagrantPlugins
|
|
|
66
66
|
else
|
|
67
67
|
## shell script to format disk, create/manage LVM, mount disk
|
|
68
68
|
disk_operations_template = ERB.new <<-EOF
|
|
69
|
-
#!/bin/bash
|
|
69
|
+
#!/usr/bin/env bash
|
|
70
70
|
DISK_DEV=#{disk_dev}
|
|
71
71
|
<% if partition == true %>
|
|
72
72
|
# fdisk the disk if it's not a block device already:
|
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.48
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Kusnier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -92,8 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
94
|
requirements: []
|
|
95
|
-
|
|
96
|
-
rubygems_version: 2.5.2.3
|
|
95
|
+
rubygems_version: 3.0.3
|
|
97
96
|
signing_key:
|
|
98
97
|
specification_version: 4
|
|
99
98
|
summary: A Vagrant plugin that creates a persistent storage and attaches it to guest
|