13 lines
350 B
YAML
13 lines
350 B
YAML
---
|
|
- name: Download binary
|
|
ansible.builtin.shell:
|
|
args:
|
|
cmd: wget https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v7.6/fahclient_7.6.21_amd64.deb
|
|
chdir: /root/
|
|
|
|
- name: Install folding
|
|
ansible.builtin.shell:
|
|
args:
|
|
cmd: dpkg -i --force-depends fahclient_7.6.21_amd64.deb
|
|
chdir: /root/
|