You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
492 B

---
- name: Download release tarball
get_url:
url: "{{ wownero_remote_url }}"
dest: "/tmp/wownero-x86_64-linux-gnu-v{{ wownero_version }}.tar.bz2"
checksum: "{{ wownero_remote_hash }}"
owner: root
group: root
mode: '0755'
- name: Extract wownerod
unarchive:
remote_src: yes
src: "/tmp/wownero-x86_64-linux-gnu-v{{ wownero_version }}.tar.bz2"
dest: "{{ wownero_bin_dir }}"
extra_opts:
- "--strip-components=1"
notify:
- restart wownerod