vagrant-persistent-storage 0.0.36 → 0.0.37
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 +4 -4
- data/README.md +1 -0
- data/lib/vagrant-persistent-storage/manage_storage.rb +2 -2
- data/lib/vagrant-persistent-storage/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef7a2310fdd4fd4cc66d734d009f9f1a0899f114
|
|
4
|
+
data.tar.gz: 0706cab06a40d1dab973d700704b0722ea88c5f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8ce5a733f4f79c76ce5b4508d74ea9b2e17abbb61adc00bdfb340987b350d3bf2824d17313c5b5409ce8b675562e87df9ece24766f7ea0fd2ed57759b6defc1
|
|
7
|
+
data.tar.gz: b3896c8dbdaa0f3bc130d0fbcb74bd03f477d481a8e7e424b028adc8aa33d15fd61e1c8cc9463eef91ff35f167ce6bd915c8e5d22e1630a945d67fd2442d7331
|
data/README.md
CHANGED
|
@@ -103,6 +103,7 @@ If your box are not using LVM you must set `config.persistent_storage.use_lvm =
|
|
|
103
103
|
* [Sebastian Wendel](https://github.com/sourceindex)
|
|
104
104
|
* [Ben Phegan](https://github.com/BenPhegan)
|
|
105
105
|
* [Philipp Schrader](https://github.com/philsc)
|
|
106
|
+
* [Alex Tomkins](https://github.com/tomkins)
|
|
106
107
|
|
|
107
108
|
## TODO
|
|
108
109
|
|
|
@@ -91,8 +91,8 @@ echo "vg activation returned: $?" >> disk_operation_log.txt
|
|
|
91
91
|
|
|
92
92
|
<% if format == true %>
|
|
93
93
|
# Create the filesytem if it doesn't already exist
|
|
94
|
-
MNT_NAME=#{
|
|
95
|
-
[[ `blkid
|
|
94
|
+
MNT_NAME=#{mnt_name}
|
|
95
|
+
[[ `blkid -t LABEL=${MNT_NAME:0:16} | grep #{fs_type}` ]] || mkfs.#{fs_type} -L #{mnt_name} #{device}
|
|
96
96
|
echo "#{fs_type} creation return: $?" >> disk_operation_log.txt
|
|
97
97
|
<% if mount == true %>
|
|
98
98
|
# Create mountpoint #{mnt_point}
|
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.37
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Kusnier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-11-
|
|
11
|
+
date: 2017-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|