15 lines
307 B
YAML
15 lines
307 B
YAML
|
|
---
|
||
|
|
- name: Configure macOS dev station
|
||
|
|
hosts: darwin_dev
|
||
|
|
gather_facts: true
|
||
|
|
|
||
|
|
pre_tasks:
|
||
|
|
- name: Ensure target is macOS
|
||
|
|
ansible.builtin.assert:
|
||
|
|
that:
|
||
|
|
- ansible_system == "Darwin"
|
||
|
|
fail_msg: "This playbook supports macOS hosts only"
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- macos_dev_station
|