7493032793
We have integrated these changes into a new opendev.org managed repository. Change-Id: Ie163ae95efe572e60a5b8b6444ecc7a35011ece8
14 lines
336 B
YAML
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
|