-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathix.yml
More file actions
34 lines (30 loc) · 685 Bytes
/
ix.yml
File metadata and controls
34 lines (30 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
- name: Install ix
hosts: localhost
tasks:
- name: "mkdir ~/bin"
file:
path: ~/bin
state: directory
mode: 0700
tags:
- ix
- name: Check if ~/bin/ix exists
stat:
path: ~/bin/ix
register: bin_ix
tags:
- ix
- name: print ix stat
debug:
var: bin_ix
tags:
- ix
- name: Copy down the ix client
get_url:
url: http://ix.io/client
dest: ~/bin/ix
checksum: 'sha256:a7f8ff373eedccb255ec7814c15b22c0dd56c42c783e8afe1f24601534d18275'
mode: '0700'
tags:
- ix