gsb2021/roles/goss/tasks/main.yml
2021-01-07 16:45:03 +01:00

14 lines
257 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: goss binary exists
stat: path=/usr/local/bin/goss
register: gossbin
- name: install goss
get_url:
url: "{{ depl_url }}/{{ depl_goss }}"
dest: /usr/local/bin/{{ depl_goss }}
mode: 0755
when: gossbin.stat.exists == False