Skip to content

Commit eb47679

Browse files
committed
fix: increasing domino timeout for slower machines
1 parent 22246d1 commit eb47679

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

roles/networking/tasks/main.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
-
3030
name: "Network Cleanup"
31-
when:
31+
when:
3232
- not ansible_module_running_in_container
3333
become: true
3434
tags: once
@@ -57,7 +57,7 @@
5757

5858
-
5959
name: "Gathering Networking Configurations"
60-
when:
60+
when:
6161
- not ansible_module_running_in_container
6262
become: true
6363
tags: once
@@ -68,7 +68,7 @@
6868

6969
-
7070
name: "Loading Virtualbox Tasks"
71-
when:
71+
when:
7272
- ansible_virtualization_type == "virtualbox"
7373
- not ansible_module_running_in_container
7474
become: true
@@ -80,8 +80,9 @@
8080

8181
-
8282
name: "Loading UTM/KVM Tasks"
83-
when:
83+
when:
8484
- ansible_virtualization_type == "kvm"
85+
- ansible_bios_vendor != "BHYVE"
8586
- not ansible_module_running_in_container
8687
become: true
8788
tags: once
@@ -90,6 +91,18 @@
9091
name: "Including OS-specific tasks"
9192
ansible.builtin.include_tasks: "utm/{{ ansible_os_family | lower }}.yml"
9293

94+
-
95+
name: "Loading Bhyve Tasks"
96+
when:
97+
- ansible_bios_vendor == "BHYVE"
98+
- not ansible_module_running_in_container
99+
become: true
100+
tags: once
101+
block:
102+
-
103+
name: "Including OS-specific tasks"
104+
ansible.builtin.include_tasks: "bhyve/{{ ansible_os_family | lower }}.yml"
105+
93106
-
94107
name: "Setting Host Records"
95108
become: true

0 commit comments

Comments
 (0)