mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
f0db1d1f6b
Fix the homebrew module failing because of warnings (#8406)
Instead of checking if there is an error message, which can also be a
warning, we now check the return code.
This commit fixes #8229 #7044
Co-authored-by: Strahinja Kustudic <strahinjak@nordeus.com>
(cherry picked from commit 43cb5a0d54
)
Co-authored-by: Strahinja Kustudic <kustodian@gmail.com>
23 lines
598 B
YAML
23 lines
598 B
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: MACOS | Find brew binary
|
|
command: which brew
|
|
register: brew_which
|
|
|
|
- name: MACOS | Get owner of brew binary
|
|
stat:
|
|
path: "{{ brew_which.stdout }}"
|
|
register: brew_stat
|
|
|
|
- name: MACOS | Install docker
|
|
community.general.homebrew:
|
|
name: docker
|
|
state: present
|
|
force_formula: true
|
|
become: true
|
|
become_user: "{{ brew_stat.stat.pw_name }}"
|
|
notify:
|
|
- uninstall docker
|