vagrant-zones 0.1.105 → 0.1.106
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 +8 -0
- data/lib/vagrant-zones/config.rb +2 -1
- data/lib/vagrant-zones/driver.rb +3 -1
- data/lib/vagrant-zones/version.rb +1 -1
- data/locales/en.yml +3 -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: 75fc486d50eb83e1957a52acf8b8ad7233a8ebda016d862c28de8a6834b453b1
|
4
|
+
data.tar.gz: e0aff97fb0d794b489a47cf5a29e996491d275a74e9ddbcd4471988149f9256c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50e7c514ff49b2f252b7a2fa9ee9c9fcf1ac91d71b08ad887d72e5917fa68cdaff6309b51bcae1900f9af7cf033315b206fa860efb4b11958910be6a91e9012e
|
7
|
+
data.tar.gz: ffe4743cd4eb8d384f6ceb4c03f33577f4c15f06a898062d04f9a09bf6c452547f480029041e0756b80a4803be6e030f3fb73c4668b39acf5d91fcffb02cdcc5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.1.106](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.105...v0.1.106) (2025-09-22)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* windows profile wait ([0061bdb](https://github.com/STARTcloud/vagrant-zones/commit/0061bdb2310f1b5d5da1b57ca4edc31b2cd5dd56))
|
9
|
+
* windows profile wait ([03ea717](https://github.com/STARTcloud/vagrant-zones/commit/03ea7176d6bb9006ec193968c422a14f379e027a))
|
10
|
+
|
3
11
|
## [0.1.105](https://github.com/STARTcloud/vagrant-zones/compare/v0.1.104...v0.1.105) (2025-09-21)
|
4
12
|
|
5
13
|
|
data/lib/vagrant-zones/config.rb
CHANGED
@@ -7,7 +7,7 @@ module VagrantPlugins
|
|
7
7
|
# This is used define the variables for the project
|
8
8
|
class Config < Vagrant.plugin('2', :config)
|
9
9
|
# rubocop:disable Layout/LineLength
|
10
|
-
attr_accessor :brand, :autoboot, :setup_method, :safe_restart, :allowed_address, :post_provision_boot, :safe_shutdown, :boxshortname, :kernel, :debug, :debug_boot, :private_network, :winalcheck, :winlcheck, :lcheck, :alcheck, :snapshot_script, :diskif, :netif, :cdroms, :disk1path, :disk1size, :cpus, :cpu_configuration, :boot, :complex_cpu_conf, :memory, :vagrant_user, :vagrant_user_private_key_path, :setup_wait, :on_demand_vnics, :clean_shutdown_time, :dhcp4, :vagrant_user_pass, :firmware_type, :vm_type, :partition_id, :shared_disk_enabled, :shared_dir, :acpi, :os_type, :console, :consolehost, :consoleport, :console_onboot, :hostbridge, :sshport, :rdpport, :override, :additional_disks, :cloud_init_resolvers, :cloud_init_enabled, :cloud_init_dnsdomain, :cloud_init_password, :cloud_init_sshkey, :cloud_init_conf, :dns, :box, :vagrant_cloud_creator, :winbooted_string, :booted_string, :zunlockbootkey, :zunlockboot, :xhci_enabled, :login_wait
|
10
|
+
attr_accessor :brand, :autoboot, :setup_method, :safe_restart, :allowed_address, :post_provision_boot, :safe_shutdown, :boxshortname, :kernel, :debug, :debug_boot, :private_network, :winalcheck, :winlcheck, :lcheck, :alcheck, :snapshot_script, :diskif, :netif, :cdroms, :disk1path, :disk1size, :cpus, :cpu_configuration, :boot, :complex_cpu_conf, :memory, :vagrant_user, :vagrant_user_private_key_path, :setup_wait, :on_demand_vnics, :clean_shutdown_time, :dhcp4, :vagrant_user_pass, :firmware_type, :vm_type, :partition_id, :shared_disk_enabled, :shared_dir, :acpi, :os_type, :console, :consolehost, :consoleport, :console_onboot, :hostbridge, :sshport, :rdpport, :override, :additional_disks, :cloud_init_resolvers, :cloud_init_enabled, :cloud_init_dnsdomain, :cloud_init_password, :cloud_init_sshkey, :cloud_init_conf, :dns, :box, :vagrant_cloud_creator, :winbooted_string, :booted_string, :zunlockbootkey, :zunlockboot, :xhci_enabled, :login_wait, :windows_profile_wait
|
11
11
|
|
12
12
|
# rubocop:enable Layout/LineLength
|
13
13
|
|
@@ -63,6 +63,7 @@ module VagrantPlugins
|
|
63
63
|
@xhci_enabled = 'off'
|
64
64
|
@override = false
|
65
65
|
@login_wait = 5
|
66
|
+
@windows_profile_wait = 120
|
66
67
|
@cloud_init_enabled = false
|
67
68
|
@cloud_init_conf = 'on'
|
68
69
|
@cloud_init_dnsdomain = nil
|
data/lib/vagrant-zones/driver.rb
CHANGED
@@ -1340,11 +1340,13 @@ module VagrantPlugins
|
|
1340
1340
|
|
1341
1341
|
## This setups the Windows Networking via Zlogin
|
1342
1342
|
def zoneniczloginsetup_windows(uii, opts, _mac)
|
1343
|
+
config = @machine.provider_config
|
1343
1344
|
ip = ipaddress(uii, opts)
|
1344
1345
|
vnic_name = vname(uii, opts)
|
1345
1346
|
defrouter = opts[:gateway].to_s
|
1346
1347
|
uii.info(I18n.t('vagrant_zones.configure_win_interface_using_vnic'))
|
1347
|
-
|
1348
|
+
uii.info("#{I18n.t('vagrant_zones.windows_profile_wait')} #{config.windows_profile_wait} seconds")
|
1349
|
+
sleep(config.windows_profile_wait)
|
1348
1350
|
|
1349
1351
|
# Get the MAC address for this VNIC (if set to auto)
|
1350
1352
|
mac = macaddress(uii, opts)
|
data/locales/en.yml
CHANGED
@@ -49,7 +49,9 @@ en:
|
|
49
49
|
configure_interface_using_vnic: |-
|
50
50
|
- Configuring the interface in the zone for VNIC using netplan:
|
51
51
|
configure_win_interface_using_vnic: |-
|
52
|
-
-
|
52
|
+
- Configuring the Windows network interface in the zone:
|
53
|
+
windows_profile_wait: |-
|
54
|
+
- Waiting for Windows user profile creation:
|
53
55
|
configure_interface_using_vnic_dladm: |-
|
54
56
|
- Configuring the interface in the zone for VNIC using dladm:
|
55
57
|
os_detect: |-
|
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.106
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Gilbert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|