Michael Grote
7a24089031
Reviewed-on: #584 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
10 lines
196 B
YAML
10 lines
196 B
YAML
---
|
|
- name: download & extract exa
|
|
become: true
|
|
ansible.builtin.unarchive:
|
|
src: "{{ exa_url }}"
|
|
dest: /usr/local/
|
|
remote_src: true
|
|
owner: root
|
|
group: root
|
|
mode: "0755"
|