roles/automationhat/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Fri, 19 Jan 2018 12:26:10 -0600
changeset 3 67f6a1e7c40a
parent 0 30d8bcb1ebb4
child 9 511e97bd5566
permissions -rw-r--r--
Fixed spelling mistake.

---

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