17 lines
420 B
YAML
17 lines
420 B
YAML
- name: Install deno from IPFS gateway
|
|
hosts: all
|
|
become: yes
|
|
user: root
|
|
tasks:
|
|
- name: Download the deno file from IPFS gateway
|
|
get_url:
|
|
url: http://192.168.1.13:8080/ipfs/QmawC2DzXqCjesHMMExuLgYxpN18SHmioKzgaD5hskZvur
|
|
dest: /usr/bin/deno
|
|
timeout: 300
|
|
|
|
|
|
- name: Set execute permission on deno
|
|
file:
|
|
path: /usr/bin/deno
|
|
mode: '0755'
|
|
state: file |