src.nth.io/

summaryrefslogtreecommitdiff
path: root/roles/automationhat/tasks/main.yaml
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2018-01-19 11:48:25 -0600
committerLuke Hoersten <[email protected]>2018-01-19 11:48:25 -0600
commit5f6b0c0e6e2ea3621cb0033b9f5498372c89db74 (patch)
treecfade4f68d242333f20d8d5b44906f6bb2b94315 /roles/automationhat/tasks/main.yaml
Initial public commit.
Diffstat (limited to 'roles/automationhat/tasks/main.yaml')
-rw-r--r--roles/automationhat/tasks/main.yaml13
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"