This is not necessary, so disable it to avoid potential problems. Change-Id: I5958b32f31e47d1ad77ff8187f22285ec6e24ec7
15 lines
357 B
YAML
15 lines
357 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
|
|
recursive: false
|