You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
368 B
YAML
15 lines
368 B
YAML
---
|
|
- name: Install Homebrew
|
|
git:
|
|
repo: "https://github.com/Homebrew/brew.git"
|
|
version: master
|
|
dest: "{{ ansible_env.HOME }}/.linuxbrew"
|
|
notify: Opt out from Homebrew analytics
|
|
|
|
- name: Install Homebrew formulae
|
|
homebrew:
|
|
name: "{{ homebrew_formulae }}"
|
|
state: latest
|
|
path: "{{ ansible_env.HOME}}/.linuxbrew/bin"
|
|
update_homebrew: yes
|