fix: increase timeout for some slower windows clients
This commit is contained in:
parent
5780a2201a
commit
bd222ce39e
1 changed files with 4 additions and 0 deletions
4
vagrant/dev/ubuntu/Vagrantfile
vendored
4
vagrant/dev/ubuntu/Vagrantfile
vendored
|
|
@ -21,6 +21,7 @@ Vagrant.configure("2") do |config|
|
|||
# VM 1 Configuration
|
||||
config.vm.define "vm1" do |vm1|
|
||||
vm1.vm.box = "ubuntu/jammy64"
|
||||
vm1.vm.boot_timeout = 600
|
||||
vm1.vm.hostname = "vm1"
|
||||
|
||||
# Fixed private network IP
|
||||
|
|
@ -48,6 +49,7 @@ Vagrant.configure("2") do |config|
|
|||
# VM 2 Configuration
|
||||
config.vm.define "vm2" do |vm2|
|
||||
vm2.vm.box = "ubuntu/jammy64"
|
||||
vm2.vm.boot_timeout = 600
|
||||
vm2.vm.hostname = "vm2"
|
||||
|
||||
# Fixed private network IP
|
||||
|
|
@ -75,6 +77,7 @@ Vagrant.configure("2") do |config|
|
|||
# VM 3 Configuration
|
||||
config.vm.define "vm3" do |vm3|
|
||||
vm3.vm.box = "ubuntu/jammy64"
|
||||
vm3.vm.boot_timeout = 600
|
||||
vm3.vm.hostname = "vm3"
|
||||
|
||||
# Fixed private network IP
|
||||
|
|
@ -102,6 +105,7 @@ Vagrant.configure("2") do |config|
|
|||
# Ansible Controller/Workstation Configuration
|
||||
config.vm.define "workstation" do |ws|
|
||||
ws.vm.box = "ubuntu/jammy64"
|
||||
ws.vm.boot_timeout = 600
|
||||
ws.vm.hostname = "ansible-workstation"
|
||||
ws.vm.synced_folder ".", "/vagrant"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue