10 lines
318 B
YAML
10 lines
318 B
YAML
|
|
---
|
||
|
|
# tasks file for homebrewInstall
|
||
|
|
|
||
|
|
- name: "Install Homebrew"
|
||
|
|
ansible.builtin.shell:
|
||
|
|
cmd: 'set -o pipefail && yes | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"'
|
||
|
|
executable: /bin/bash
|
||
|
|
register: homebrew_install
|
||
|
|
changed_when: homebrew_install.rc != 0
|