1
---
2
3
- name: download automationhat install script
4
get_url:
5
url: "https://get.pimoroni.com/automationhat"
6
dest: "/tmp/automationhat.sh"
7
mode: 0750
8
9
- name: install automationhat
10
shell: "/tmp/automationhat.sh"
11
args:
12
chdir: "/tmp"
13
executable: "/bin/bash"