1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00
ansible-collection-prometheus/roles/prometheus_node/tasks/install/OpenBSD.yml

16 lines
367 B
YAML
Raw Permalink Normal View History

2020-11-13 10:36:46 +01:00
---
- name: install prometheus node exporter
community.general.openbsd_pkg:
name:
- node_exporter
- moreutils
2020-11-13 10:36:46 +01:00
- name: create textfile collector directory
ansible.builtin.file:
path: "{{ prometheus_node_textfile_dir }}"
2020-11-13 10:36:46 +01:00
state: directory
owner: "{{ prometheus_node_root_user }}"
group: "{{ prometheus_node_group }}"
2020-11-13 10:36:46 +01:00
mode: 0750