Browse Source

ansible: download redis-cell module v0.4.0 (was v0.2.1) and support aarch64 architecture

merge-requests/157/head
Andrew Shu 6 months ago
parent
commit
c0ecf0ba6b
  1. 14
      ansible/roles/redis_module_cell/tasks/main.yml

14
ansible/roles/redis_module_cell/tasks/main.yml

@ -1,9 +1,17 @@
---
- name: Download redis-cell Redis module from GitHub
- name: Download redis-cell Redis module (x86_64) from GitHub
when: ansible_facts['architecture'] == 'x86_64'
get_url:
dest: /tmp/redis-cell.tar.gz
url: https://github.com/brandur/redis-cell/releases/download/v0.2.1/redis-cell-v0.2.1-x86_64-unknown-linux-gnu.tar.gz
checksum: sha256:9427fb100f4cada817f30f854ead7f233de32948a0ec644f15988c275a2ed1cb
url: https://github.com/brandur/redis-cell/releases/download/v0.4.0/redis-cell-v0.4.0-x86_64-unknown-linux-gnu.tar.gz
checksum: sha256:f86380f692c3852502e7c8924915a3424a4614ba01d7feec4cbc3c1faf22fb28
- name: Download redis-cell Redis module (aarch64) from GitHub
when: ansible_facts['architecture'] == 'aarch64'
get_url:
dest: /tmp/redis-cell.tar.gz
url: https://github.com/brandur/redis-cell/releases/download/v0.4.0/redis-cell-v0.4.0-aarch64-unknown-linux-gnu.tar.gz
checksum: sha256:bff45476b45c5e7da7e840076f35e91f83641960e5860620063da7b070f154bc
- name: Create /opt/redis-cell
file:

Loading…
Cancel
Save