roles/automationhat/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Fri, 19 Jan 2018 11:54:24 -0600
changeset 1 bc6a0f25a229
parent 0 30d8bcb1ebb4
child 9 511e97bd5566
permissions -rw-r--r--
Pulled out src files.

---

- 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"