roles/automationhat/tasks/main.yaml
author Luke Hoersten <luke@hoersten.org>
Mon, 29 Jan 2018 20:31:46 -0600
changeset 4 9ae95d5fa0b7
parent 0 30d8bcb1ebb4
child 9 511e97bd5566
permissions -rw-r--r--
Renamed base role to rpi-base.

---

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