forked from ansible-collection/filebeat
12 lines
246 B
YAML
12 lines
246 B
YAML
|
---
|
||
|
# tasks file for curl
|
||
|
|
||
|
- name: Install CURL Tool
|
||
|
ansible.builtin.get_url:
|
||
|
url: https://github.com/moparisthebest/static-curl/releases/download/v7.80.0/curl-amd64
|
||
|
dest: /usr/bin/curl
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: '0755'
|
||
|
|