mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-11-29 12:35:11 +01:00
13 lines
259 B
YAML
13 lines
259 B
YAML
|
---
|
||
|
- name: Prepare
|
||
|
hosts: all
|
||
|
gather_facts: true
|
||
|
tasks:
|
||
|
- name: Install ansible support packages
|
||
|
package:
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
|
with_items:
|
||
|
- ca-certificates
|
||
|
when: ansible_os_family == 'Debian'
|