First brew package
This commit is contained in:
parent
3faa5f5d34
commit
2615cbd868
1 changed files with 6 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
- name: "Install Homebrew"
|
||||
when: not path_check.stat.exists
|
||||
ignore_errors: true
|
||||
block:
|
||||
- name: "Create Folder linuxbrew"
|
||||
become: true
|
||||
|
|
@ -31,3 +32,8 @@
|
|||
executable: /bin/bash
|
||||
register: homebrew_install
|
||||
changed_when: homebrew_install.rc != 0
|
||||
|
||||
- name: "Install Homebrew packages"
|
||||
community.general.homebrew:
|
||||
name: tldr
|
||||
state: present
|
||||
|
|
|
|||
Loading…
Reference in a new issue