filebeat/playbooks/roles/curl/tasks/main.yml

12 lines
172 B
YAML
Raw Normal View History

2021-12-07 11:45:39 +08:00
---
# tasks file for curl
- name: Install CURL Tool
2021-12-07 16:48:34 +08:00
ansible.builtin.copy:
src: curl
dest: /usr/bin/curl-7.80.0
2021-12-07 11:45:39 +08:00
owner: root
group: root
mode: '0755'