diff options
| author | Luke Hoersten <[email protected]> | 2018-01-19 11:48:25 -0600 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2018-01-19 11:48:25 -0600 |
| commit | 5f6b0c0e6e2ea3621cb0033b9f5498372c89db74 (patch) | |
| tree | cfade4f68d242333f20d8d5b44906f6bb2b94315 /roles/automationhat/tasks | |
Initial public commit.
Diffstat (limited to 'roles/automationhat/tasks')
| -rw-r--r-- | roles/automationhat/tasks/main.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/automationhat/tasks/main.yaml b/roles/automationhat/tasks/main.yaml new file mode 100644 index 0000000..405b450 --- /dev/null +++ b/roles/automationhat/tasks/main.yaml @@ -0,0 +1,13 @@ +--- + +- name: download automationhat install script + get_url: + url: "https://get.pimoroni.com/automationhat" + dest: "/tmp/automationhat.sh" + mode: 0750 + +- name: install automationhat + shell: "/tmp/automationhat.sh" + args: + chdir: "/tmp" + executable: "/bin/bash" |
