mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 20:03:04 +00:00
11 lines
201 B
YAML
11 lines
201 B
YAML
|
---
|
||
|
- name: Restart cadvisor
|
||
|
listen: "restart cadvisor"
|
||
|
become: true
|
||
|
ansible.builtin.systemd:
|
||
|
daemon_reload: true
|
||
|
name: cadvisor
|
||
|
state: restarted
|
||
|
when:
|
||
|
- not ansible_check_mode
|