Skip to content

Commit

Permalink
fix: renenable parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkProminic committed Dec 12, 2023
1 parent 430be2d commit 38c2bf2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/vagrant-zones/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module ProviderZone
# This is used define the variables for the project
class Config < Vagrant.plugin('2', :config)
# rubocop:disable Layout/LineLength
attr_accessor :brand, :autoboot, :setup_method, :safe_restart, :allowed_address, :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
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

# rubocop:enable Layout/LineLength

Expand All @@ -16,6 +16,7 @@ def initialize
@brand = 'bhyve'
@additional_disks = UNSET_VALUE
@autoboot = true
@post_provision_boot = false
@kernel = UNSET_VALUE
@boxshortname = UNSET_VALUE
@cdroms = nil
Expand Down
5 changes: 2 additions & 3 deletions lib/vagrant-zones/plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ class Plugin < Vagrant.plugin('2')
require_relative 'config'
Config
end
## Experimental Parallel Execucution
## provider(:zone, parallel: true) do
provider(:zone, parallel: false) do
provider(:zone, parallel: true) do
## provider(:zone, parallel: false) do
require_relative 'provider'
Provider
end
Expand Down

0 comments on commit 38c2bf2

Please sign in to comment.