mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 18:23:40 +02:00
11 lines
274 B
YAML
11 lines
274 B
YAML
---
|
|
- name: restart filebeat
|
|
service: name=filebeat state=restarted
|
|
when: filebeat_output_hosts | length > 0
|
|
|
|
- name: restart journalbeat
|
|
service: name=journalbeat state=restarted
|
|
when:
|
|
- filebeat_output_hosts | length > 0
|
|
- ansible_service_mgr == 'systemd'
|