vagrant-zones 0.1.67 → 0.1.69
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/CHANGELOG.md +14 -0
- data/README.md +1 -0
- data/lib/vagrant-zones/action/package.rb +3 -3
- data/lib/vagrant-zones/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b63a198cdc8609277c84fd7d668da3a15e16ab708df0e99de3b3636e3e21ffb9
|
|
4
|
+
data.tar.gz: e228fc46894f8f0b339a1c966f51dd9fd3aa0b07d70e5c5c0e6cf6b1f650148b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 135a0207d8a3ef80ee23bb7d8fb46d37e4ff780a158a023f2d728f5ac64d3592491b4114b54d0ab00c87c4aa5025cb903b24a784e86f21342342b46dc3a8da01
|
|
7
|
+
data.tar.gz: b53fd34a5ce18837a47cfe522af85b41787645d486a35166f2d204df042d39ff6fbaa5b94538f44415735ec161a8c33fe3c35cd12c7cf1a3e4da2b2ca9ae0452
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.69](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.68...v0.1.69) (2023-01-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* line count ([65edf07](https://github.com/STARTcloud/vagrant-zones/commit/65edf07b210b944d4e41f84686067086dc10b7fb))
|
|
9
|
+
|
|
10
|
+
## [0.1.68](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.67...v0.1.68) (2023-01-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* packaging ([657b243](https://github.com/STARTcloud/vagrant-zones/commit/657b24334a29265ee1de55b30a051eff178bb568))
|
|
16
|
+
|
|
3
17
|
## [0.1.67](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.66...v0.1.67) (2023-01-15)
|
|
4
18
|
|
|
5
19
|
|
data/README.md
CHANGED
|
@@ -4,6 +4,7 @@ Vagrant Plugin which can be used to managed Bhyve, LX and native zones on illumo
|
|
|
4
4
|
This project is still in the early stages, any feedback is much appreciated
|
|
5
5
|
|
|
6
6
|
[](https://badge.fury.io/rb/vagrant-zones)
|
|
7
|
+
[](https://github.com/STARTcloud/vagrant-zones/actions/workflows/lint-release-and-publish.yml)
|
|
7
8
|
|
|
8
9
|
- [Status](#status)
|
|
9
10
|
- [Functions](../../wiki/Status#functions)
|
|
@@ -40,9 +40,8 @@ module VagrantPlugins
|
|
|
40
40
|
Dir.mkdir(tmp_dir)
|
|
41
41
|
datasetpath = "#{@machine.provider_config.boot['array']}/#{@machine.provider_config.boot['dataset']}/#{name}"
|
|
42
42
|
t = Time.new
|
|
43
|
-
d = '-'
|
|
44
43
|
c = ':'
|
|
45
|
-
datetime = %(#{t.year}
|
|
44
|
+
datetime = %(#{t.year}-#{t.month}-#{t.day}-#{t.hour}#{c}#{t.min}#{c}#{t.sec})
|
|
46
45
|
snapshot_create(datasetpath, datetime, env[:ui], @machine.provider_config)
|
|
47
46
|
snapshot_send(datasetpath, "#{tmp_dir}/box.zss", datetime, env[:ui], @machine.provider_config)
|
|
48
47
|
## snapshot_delete(datasetpath, env[:ui], datetime)
|
|
@@ -126,7 +125,8 @@ module VagrantPlugins
|
|
|
126
125
|
end
|
|
127
126
|
|
|
128
127
|
def assemble_box(boxname, extra)
|
|
129
|
-
`tar -
|
|
128
|
+
`"tar -cvzf #{boxname} ./metadata.json ./Vagrantfile ./box.zss #{extra}` if system('uname -a | grep Linux')
|
|
129
|
+
`"tar -cvzEf #{boxname} ./metadata.json ./Vagrantfile ./box.zss #{extra}` unless system('uname -a | grep Linux')
|
|
130
130
|
end
|
|
131
131
|
end
|
|
132
132
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-zones
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.69
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Gilbert
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|