src.nth.io/

summaryrefslogtreecommitdiff
path: root/roles/automationhat/tasks/main.yaml
blob: 405b450e034fabbc471884d9e1ec605c930835bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"