vagrant-zones 0.1.91 → 0.1.93

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: 49161b38da3defad97f159d6a93d3b9508c3e381425812da3d950fff7e54a099
4
- data.tar.gz: 53b947780cd6a2bf3a253a2f4a7ec0036ad48d8c1ffb869dc7ab750cd51d0ebd
3
+ metadata.gz: e07b281bab5dd258c7b640b659c330061d87458a795247b941c05dbc6e194b84
4
+ data.tar.gz: d48d93a6e9089267a6e93ddf45419fb2d8729fce1e806421e514ec0d9a81b3f2
5
5
  SHA512:
6
- metadata.gz: 5abb37dfd948f20ba841a359ea9990b141184b20d527d5807736ea8fc3eaf067fb3e0a328f394df356a559974b72a1f637d30f3bc773ce2a00e5659176c67738
7
- data.tar.gz: a26c9ea34a8e2fbb3685de043a1d5591ef9b8461aecf376a03ee836466d788537ea3ecf967b673cc28bdb79093ebcd3c19bb0141e2909c73cc877e3a12675cca
6
+ metadata.gz: '0685b5eab45e2cd3ec84f3bcca2fb6f1ca141967b832d2162b1853d91cfcd533ea98bb66fc6f01c0a17fd20ae0768baef5821d2b5fb80fefa44899d3ea264c0c'
7
+ data.tar.gz: 25bcb6927db98c2e4771883796758908f56fa9a243f592dbc2af68fca2ac45084589945a974df289fa8bdbf5a1c71804b6498d60a8f71e9984cefed9d5c3f3b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.93](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.92...v0.1.93) (2024-01-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * metadata ([c6c9845](https://github.com/STARTcloud/vagrant-zones/commit/c6c9845e7746ccd5b959968647a720e98bf15f6f))
9
+ * metadata ([844c435](https://github.com/STARTcloud/vagrant-zones/commit/844c4351c8b66ce651192d0a1265214c53a65164))
10
+ * metadata ([9dc7104](https://github.com/STARTcloud/vagrant-zones/commit/9dc71043a96803b1429144480d59955828c22007))
11
+
12
+ ## [0.1.92](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.91...v0.1.92) (2024-01-07)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * package extra files ([a5a5e4e](https://github.com/STARTcloud/vagrant-zones/commit/a5a5e4e45f6af0e3a4b629f3f95b57237621044e))
18
+
3
19
  ## [0.1.91](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.90...v0.1.91) (2024-01-07)
4
20
 
5
21
 
@@ -49,13 +49,11 @@ module VagrantPlugins
49
49
  extra = ''
50
50
 
51
51
  ## Include User Extra Files
52
- @tmp_include = "#{tmp_dir}/_include"
53
52
  if env['package.include']
54
53
  extra = '_include'
55
- Dir.mkdir(@tmp_include)
56
54
  env['package.include'].each do |f|
57
55
  env[:ui].info("Including user file: #{f}")
58
- FileUtils.cp(f, @tmp_include)
56
+ FileUtils.cp(f, tmp_dir)
59
57
  end
60
58
  end
61
59
 
@@ -99,14 +97,9 @@ module VagrantPlugins
99
97
  puts "#{@pfexec} zfs send -r #{datasetpath}/boot@vagrant_box#{datetime} > #{destination}" if result.zero? && config.debug
100
98
  end
101
99
 
102
- def metadata_content(brand, _kernel, vcc, boxshortname)
100
+ def metadata_content(_brand, _kernel, vcc, boxshortname)
103
101
  <<-ZONEBOX
104
- {
105
- "provider": "zone",
106
- "format": "zss",
107
- "brand": "#{brand}",
108
- "url": "https://app.vagrantup.com/#{vcc}/boxes/#{boxshortname}"
109
- }
102
+ { "provider": "zone", "architecture": "amd64", "url": "https://app.vagrantup.com/#{vcc}/boxes/#{boxshortname}" }
110
103
  ZONEBOX
111
104
  end
112
105
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module ProviderZone
5
- VERSION = '0.1.91'
5
+ VERSION = '0.1.93'
6
6
  NAME = 'vagrant-zones'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-zones
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.91
4
+ version: 0.1.93
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Gilbert