Files
a13labs.infra/ansible/playbook_macos_dev_station.yml
T

15 lines
307 B
YAML
Raw Normal View History

---
- 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