vagrant-zones 0.1.48 → 0.1.52

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: 935ea924ebb91fc8f06ea414c1483ee441c0736e65fda689a5d2fb31d3c29b67
4
- data.tar.gz: 451bf4de72f3914a1a45fa5a0ad13a78fab307a7cbf7e6ed54724253643f0cf8
3
+ metadata.gz: 59f0414583d8953d0767f67eccc3fa7ba0a6aaf9460566742d9dc62ef747b580
4
+ data.tar.gz: 0e5b6d5215c626e306d42322f17234e4f71708197861fd17178ce39679e23b52
5
5
  SHA512:
6
- metadata.gz: 86818389a269e3cca2142b4a121873781d8ab63200638df8b3fea86006a2cb766313905426f8a4f6716c806f37b9d8cf02a6149bf9dd29141676c4d185b18c48
7
- data.tar.gz: 0e966d2f561a05668db8b8f8ce743c7519c2b2edb061f1d84a4adc9a187286a5b7a9c3718f61a856108bbd46bcf25c7fff56ddeaa5c36b2e48a3368f48996d42
6
+ metadata.gz: '08ba65bcd7371e02719ddec716ce75111e8f35f37b9f6ecb97c31d74e13d669ca78377fb88b34bbbadf3252da5219b4ef0acfef5db6ceb189ed12cd3c0b3e2d7'
7
+ data.tar.gz: f2e3a29f4401ad167b90ac08bfa3e76abde7265124ad6c5125bb7d61380a277c0d9d8a7223a0a26711c9999d22390515ae7076554604247ca4d56437af08ca2d
@@ -10,15 +10,17 @@ on:
10
10
  jobs:
11
11
  release-please:
12
12
  runs-on: ubuntu-latest
13
+ env:
14
+ GEM_NAME: "vagrant-zones"
13
15
  steps:
14
16
  - uses: GoogleCloudPlatform/release-please-action@v2
15
17
  id: release
16
18
  with:
17
19
  release-type: ruby
18
- package-name: vagrant-zones
20
+ package-name: ${{ env.GEM_NAME }}
19
21
  bump-minor-pre-major: true
20
22
  bump-patch-for-minor-pre-major: true
21
- version-file: "lib/vagrant-zones/version.rb"
23
+ version-file: "lib/${{ env.GEM_NAME }}/version.rb"
22
24
 
23
25
  # Checkout code if release was created
24
26
  - uses: actions/checkout@v2
@@ -41,7 +43,6 @@ jobs:
41
43
  run: bundle exec rake
42
44
  if: ${{ steps.release.outputs.release_created }}
43
45
 
44
-
45
46
  # Publish to GPR
46
47
  - name: Publish to GPR
47
48
  run: |
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ### [0.1.51](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.50...v0.1.51) (2022-11-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * release 0.1.52 ([9481021](https://www.github.com/STARTcloud/vagrant-zones/commit/948102146752274be1c3b37d66b465517197ea77))
9
+
10
+ ### [0.1.50](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.49...v0.1.50) (2022-11-23)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * spacing ([0b187e5](https://www.github.com/STARTcloud/vagrant-zones/commit/0b187e549aea50e8e8b9558f8a39cd228b7580bb))
16
+
17
+ ### [0.1.49](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.48...v0.1.49) (2022-11-23)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * change default number of cores ([7cc9f65](https://www.github.com/STARTcloud/vagrant-zones/commit/7cc9f652bbcf0e6048cad7f770024c956306bbfc))
23
+ * remove old config ([f2193fd](https://www.github.com/STARTcloud/vagrant-zones/commit/f2193fd50e9099f7577f5aac6cda6a7ab367bfa3))
24
+
3
25
  ### [0.1.48](https://www.github.com/STARTcloud/vagrant-zones/compare/v0.1.47...v0.1.48) (2022-11-23)
4
26
 
5
27
 
@@ -39,10 +39,10 @@ module VagrantPlugins
39
39
  @consolehost = '0.0.0.0'
40
40
  @console_onboot = 'false'
41
41
  @console = 'webvnc'
42
- @memory = '4G'
42
+ @memory = '2G'
43
43
  @diskif = 'virtio-blk'
44
44
  @netif = 'virtio-net-viona'
45
- @cpus = 2
45
+ @cpus = 1
46
46
  @cpu_configuration = 'simple'
47
47
  @complex_cpu_conf = UNSET_VALUE
48
48
  @boot = UNSET_VALUE
@@ -51,7 +51,6 @@ module VagrantPlugins
51
51
  @setup_wait = 90
52
52
  @box = UNSET_VALUE
53
53
  @clean_shutdown_time = 300
54
- @dns = [{ 'nameserver' => '1.1.1.1' }, { 'nameserver' => '1.0.0.1' }]
55
54
  @vmtype = 'production'
56
55
  @partition_id = '0000'
57
56
  @sshport = '22'
@@ -508,7 +508,6 @@ module VagrantPlugins
508
508
  ## Begin of code block to move to Netplan function
509
509
  uii.info(I18n.t('vagrant_zones.configure_interface_using_vnic'))
510
510
  uii.info(" #{vnic_name}")
511
-
512
511
  netplan1 = %(network:\n version: 2\n ethernets:\n #{vnic_name}:\n match:\n macaddress: #{mac}\n)
513
512
  netplan2 = %( dhcp-identifier: mac\n dhcp4: #{opts[:dhcp4]}\n dhcp6: #{opts[:dhcp6]}\n)
514
513
  netplan3 = %( set-name: #{vnic_name}\n addresses: [#{ip}/#{shrtsubnet}]\n gateway4: #{defrouter}\n)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module VagrantPlugins
4
4
  module ProviderZone
5
- VERSION = '0.1.48'
5
+ VERSION = '0.1.52'
6
6
  end
7
7
  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.48
4
+ version: 0.1.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Gilbert