Skip to content

Commit

Permalink
Added missing Darwin check from machine_operations role
Browse files Browse the repository at this point in the history
  • Loading branch information
AllRWeak authored and at3rva committed Dec 19, 2023
1 parent 33144b5 commit f4c066c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@
loop:
- regex: guestos.*
line: guestos = "darwin20-64"
when: ansible_system == "Darwin"
when:
- ansible_system is defined
- ansible_system == "Darwin"

- name: Configuring {{ custom_vm_name | default(vm_name) }} custom parameters...
ansible.builtin.lineinfile:
Expand Down

0 comments on commit f4c066c

Please sign in to comment.