Ansible/playbook/macos/installDevTools.yml

11 lines
192 B
YAML
Raw Normal View History

---
- name: Install MacOS Dev Tools
hosts: osx
tasks:
- name: Install python3
homebrew:
name: python3
state: present
when: ansible_distribution == "MacOS"