roles/automationhat/tasks/main.yaml
changeset 0 30d8bcb1ebb4
child 9 511e97bd5566
equal deleted inserted replaced
-1:000000000000 0:30d8bcb1ebb4
       
     1 ---
       
     2 
       
     3 - name: download automationhat install script
       
     4   get_url:
       
     5     url: "https://get.pimoroni.com/automationhat"
       
     6     dest: "/tmp/automationhat.sh"
       
     7     mode: 0750
       
     8 
       
     9 - name: install automationhat
       
    10   shell: "/tmp/automationhat.sh"
       
    11   args:
       
    12     chdir: "/tmp"
       
    13     executable: "/bin/bash"