mirror of
https://github.com/prometheus-community/ansible
synced 2025-03-03 06:27:13 +00:00
26 lines
509 B
YAML
26 lines
509 B
YAML
---
|
|
- include: preflight.yml
|
|
tags:
|
|
- blackbox_exporter_install
|
|
- blackbox_exporter_configure
|
|
- blackbox_exporter_run
|
|
|
|
- include: install.yml
|
|
become: true
|
|
tags:
|
|
- blackbox_exporter_install
|
|
|
|
- include: configure.yml
|
|
become: true
|
|
tags:
|
|
- blackbox_exporter_configure
|
|
|
|
- name: ensure blackbox_exporter service is started and enabled
|
|
become: true
|
|
systemd:
|
|
daemon_reload: true
|
|
name: blackbox_exporter
|
|
state: started
|
|
enabled: true
|
|
tags:
|
|
- blackbox_exporter_run
|