mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-02-21 01:48:07 +00:00
18 lines
330 B
YAML
18 lines
330 B
YAML
|
---
|
||
|
- name: Verify Ansible versions
|
||
|
hosts: all
|
||
|
tags: always
|
||
|
become: false
|
||
|
run_once: true
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- local_action: command ./versioncheck.py
|
||
|
changed_when: false
|
||
|
|
||
|
- name: Bootstrap macOS hosts
|
||
|
become: true
|
||
|
remote_user: administrator
|
||
|
hosts: all
|
||
|
roles:
|
||
|
- infra-role-bootstrap-macos
|