mg
3555b6a513
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#286 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
10 lines
211 B
YAML
10 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
|