mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-23 04:13:05 +00:00
e99b807340
Signed-off-by: gardar <gardar@users.noreply.github.com>
33 lines
661 B
YAML
33 lines
661 B
YAML
---
|
|
- name: Preflight
|
|
ansible.builtin.include_tasks: preflight.yml
|
|
tags:
|
|
- snmp_exporter_install
|
|
- snmp_exporter_configure
|
|
- snmp_exporter_run
|
|
|
|
- name: Install
|
|
ansible.builtin.include_tasks:
|
|
file: install.yml
|
|
apply:
|
|
become: true
|
|
tags:
|
|
- snmp_exporter_install
|
|
|
|
- name: Configure
|
|
ansible.builtin.include_tasks:
|
|
file: configure.yml
|
|
apply:
|
|
become: true
|
|
tags:
|
|
- snmp_exporter_configure
|
|
|
|
- name: Ensure snmp_exporter service is started and enabled
|
|
become: true
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|
|
name: snmp_exporter
|
|
state: started
|
|
enabled: true
|
|
tags:
|
|
- snmp_exporter_run
|