11 lines
211 B
YAML
11 lines
211 B
YAML
|
---
|
||
|
- name: download & extract exa
|
||
|
become: true
|
||
|
ansible.builtin.unarchive:
|
||
|
src: "{{ exa_url }}"
|
||
|
dest: /usr/local/
|
||
|
remote_src: yes
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0755
|