2020-09-30 14:00:05 +02:00
|
|
|
---
|
2022-08-05 14:03:38 +02:00
|
|
|
# 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
|
|
|
|
|
2020-09-30 14:00:05 +02:00
|
|
|
- when: ansible_facts.distribution == 'MacOSX'
|
|
|
|
block:
|
|
|
|
- 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 gnu-tar
|
|
|
|
community.general.homebrew:
|
|
|
|
name: gnu-tar
|
|
|
|
state: present
|
|
|
|
become: yes
|
|
|
|
become_user: "{{ brew_stat.stat.pw_name }}"
|
|
|
|
notify:
|
|
|
|
- uninstall gnu-tar
|