From 5f6b0c0e6e2ea3621cb0033b9f5498372c89db74 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Fri, 19 Jan 2018 11:48:25 -0600 Subject: Initial public commit. --- roles/automationhat/tasks/main.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 roles/automationhat/tasks/main.yaml (limited to 'roles/automationhat/tasks') 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" -- cgit v1.2.3