zuul-jobs/roles/ensure-dstat-graph/tasks/main.yaml
Ian Wienand 7493032793 ensure-dstat-graph: clone from opendev
We have integrated these changes into a new opendev.org managed
repository.

Change-Id: Ie163ae95efe572e60a5b8b6444ecc7a35011ece8
2021-12-07 13:04:11 +11:00

14 lines
336 B
YAML

- name: Check for cached dstat_graph
stat:
path: "{{ dstat_graph_cache_path }}"
register: dstat_cache
- name: Clone dstat_graph
when: >
not dstat_cache.stat.exists or
dstat_graph_cache_ignore
git:
repo: https://opendev.org/opendev/dstat_graph
dest: "{{ dstat_graph_download_path }}"
version: master