homeserver/friedhof/mgrote_exa/tasks/main.yml

11 lines
196 B
YAML
Raw Normal View History

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