nix-config/ansible/roles/elastic.beats/tasks/main.yml

18 lines
381 B
YAML
Raw Normal View History

2019-08-13 16:19:51 +02:00
---
# tasks file for beats
- name: check-parameters
2021-03-04 18:32:20 +01:00
include_tasks: beats-param-check.yml
- name: define beat product
set_fact:
beat_product: "{{ beat }}"
2019-08-13 16:19:51 +02:00
- name: os-specific vars
2021-03-04 18:32:20 +01:00
include_vars: '{{ ansible_os_family }}.yml'
- include_tasks: beats.yml
2019-08-13 16:19:51 +02:00
2021-03-04 18:32:20 +01:00
- name: Force all notified handlers to run at this point, not waiting for normal sync points
meta: flush_handlers