roles/automationhat/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Mon, 29 Jan 2018 22:38:53 -0600
changeset 6 0dab8e98044a
parent 0 30d8bcb1ebb4
child 9 511e97bd5566
permissions -rw-r--r--
Enabled ssh pipelining.

---

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