fp/ansible/roles/ipfs/tasks/ipfs-cluster-service.yml
CJ_Clippy 325fe576e2
Some checks failed
ci / test (push) Failing after 6m3s
fp/our CI/CD / build (push) Successful in 1m27s
add ipfs playbook
2025-10-04 08:45:34 -08:00

26 lines
811 B
YAML

---
- name: Download and extract ipfs-cluster-service
ansible.builtin.unarchive:
src: "https://dist.ipfs.tech/ipfs-cluster-service/{{ ipfs_cluster_service_version }}/ipfs-cluster-service_{{ ipfs_cluster_service_version }}_linux-amd64.tar.gz"
dest: /tmp
remote_src: true
notify:
- Restart ipfs-cluster-service
- name: Install ipfs-cluster-service
ansible.builtin.copy:
src: /tmp/ipfs-cluster-service/ipfs-cluster-service
dest: /usr/local/bin/ipfs-cluster-service
mode: "0755"
remote_src: true
notify:
- Restart ipfs-cluster-service
- name: Create ipfs-cluster-service service
ansible.builtin.template:
src: ipfs-cluster-service.service.j2
dest: /etc/systemd/system/ipfs-cluster-service.service
mode: "0644"
notify:
- Restart ipfs-cluster-service