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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a85d1a17b093adfe212f62f5e6c9b125522cfe74ca11a5bc49ce2c7d3d2538b6
4
- data.tar.gz: 1088bd88e036a9e31dff0482b59b9bb67d5d16d85576483b52bb9a1134a9bec2
3
+ metadata.gz: b63a198cdc8609277c84fd7d668da3a15e16ab708df0e99de3b3636e3e21ffb9
4
+ data.tar.gz: e228fc46894f8f0b339a1c966f51dd9fd3aa0b07d70e5c5c0e6cf6b1f650148b
5
5
  SHA512:
6
- metadata.gz: 95b4f1a43bdb4bc73bd832afe1f27fd7b5b3b4c6551b92229e25a082b710197c63d09d0bdf2460fe1dd3778a36bc1dbd6f3fbd4f6b6cf09e13f38bc5efd96a7a
7
- data.tar.gz: 30c81f5321792fbd92eaafd2eddafae0f2c8e8d20a7889ca540ba8fba3fbeb939f385837badd8d5f35d82b10e80e25543df5a99c651c25bb6ceb4e67ba89b4af
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
  [![Gem Version](https://badge.fury.io/rb/vagrant-zones.svg)](https://badge.fury.io/rb/vagrant-zones)
7
+ [![Test, Lint, Release and Publish](https://github.com/STARTcloud/vagrant-zones/actions/workflows/lint-release-and-publish.yml/badge.svg)](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}#{d}#{t.month}#{d}#{t.day}#{d}#{t.hour}#{c}#{t.min}#{c}#{t.sec})
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 -cvzEf "#{boxname}" ./metadata.json ./Vagrantfile ./box.zss #{extra}`
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module ProviderZone
5
- VERSION = '0.1.67'
5
+ VERSION = '0.1.69'
6
6
  NAME = 'vagrant-zones'
7
7
  end
8
8
  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.67
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-15 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n