vagrant-zones 0.1.66 → 0.1.69

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75cd42645b2bffbb94157138bc66a237f319c55b13dd44d5a894a2974d9e106f
4
- data.tar.gz: f8896a1d61d6277e5bbaa97795a63e13b4610a3fc40e852476170654cd14cc6b
3
+ metadata.gz: b63a198cdc8609277c84fd7d668da3a15e16ab708df0e99de3b3636e3e21ffb9
4
+ data.tar.gz: e228fc46894f8f0b339a1c966f51dd9fd3aa0b07d70e5c5c0e6cf6b1f650148b
5
5
  SHA512:
6
- metadata.gz: b3af9762bf8494ea6939ca6367c9475e83906ecff5113f1680a0c8db516992ba769d8e33385fb332146ae79557264db3fb108ac472884359687329af51ed9377
7
- data.tar.gz: f96782b41ea8ee43859067a5eacaf55929e1aee702284b03c7ccc2f19ad37ef27a21e7acab835de4068df8e0959e37d751b374a2365652827bdb114626459589
6
+ metadata.gz: 135a0207d8a3ef80ee23bb7d8fb46d37e4ff780a158a023f2d728f5ac64d3592491b4114b54d0ab00c87c4aa5025cb903b24a784e86f21342342b46dc3a8da01
7
+ data.tar.gz: b53fd34a5ce18837a47cfe522af85b41787645d486a35166f2d204df042d39ff6fbaa5b94538f44415735ec161a8c33fe3c35cd12c7cf1a3e4da2b2ca9ae0452
@@ -9,7 +9,8 @@ on:
9
9
 
10
10
  jobs:
11
11
  release-please:
12
- runs-on: ubuntu-latest
12
+ runs-on:
13
+ - self-hosted
13
14
  env:
14
15
  GEM_NAME: "vagrant-zones"
15
16
  steps:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
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
+
17
+ ## [0.1.67](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.66...v0.1.67) (2023-01-15)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * run selfhosted! ([7c89787](https://github.com/STARTcloud/vagrant-zones/commit/7c897873ba1d3803f1b1ce453cc4bbd9d8bbe683))
23
+
3
24
  ## [0.1.66](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.65...v0.1.66) (2023-01-09)
4
25
 
5
26
 
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.66'
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.66
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-09 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