mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Test iso_extract on OS X.
This commit is contained in:
parent
2cafb934eb
commit
bf17cb6edd
2 changed files with 14 additions and 8 deletions
|
@ -1,2 +1 @@
|
|||
posix/ci/group1
|
||||
skip/osx
|
||||
|
|
|
@ -53,17 +53,24 @@
|
|||
become: yes
|
||||
when: ansible_distribution in ['Ubuntu']
|
||||
|
||||
# FIXME: The homebrew module no longer seems to work
|
||||
# "Error: Running Homebrew as root is extremely dangerous."
|
||||
- name: Find brew binary
|
||||
command: which brew
|
||||
register: brew_which
|
||||
when: ansible_distribution in ['MacOSX']
|
||||
|
||||
- name: Get owner of brew binary
|
||||
stat:
|
||||
path: "{{ brew_which.stdout }}"
|
||||
register: brew_stat
|
||||
when: ansible_distribution in ['MacOSX']
|
||||
|
||||
- name: Install 7zip package if we are on MacOSX
|
||||
# macports:
|
||||
# name: p7zip
|
||||
# state: installed
|
||||
# update_cache: yes
|
||||
homebrew:
|
||||
name: p7zip
|
||||
state: present
|
||||
update_homebrew: yes
|
||||
update_homebrew: no
|
||||
become: yes
|
||||
become_user: "{{ brew_stat.stat.pw_name }}"
|
||||
when: ansible_distribution in ['MacOSX']
|
||||
|
||||
- name: Install 7zip package if we are on FreeBSD
|
||||
|
|
Loading…
Reference in a new issue