11 lines
245 B
YAML
11 lines
245 B
YAML
---
|
|
|
|
- name: goss binary exists
|
|
stat: path=/usr/local/bin/goss
|
|
register: gossbin
|
|
|
|
- name: install goss
|
|
shell: export https_proxy=http://10.121.38.1:8080 && curl -fsSL https://goss.rocks/install | sh
|
|
when: gossbin.stat.exists == False
|
|
|