blob: 2ca1bdf2a0d006cd0714390992d8e2580c757d83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# openbsd.yml ~~ group_vars/
# openbsd machines
---
user_root: "root"
group_root: "root"
path_prometheusconfig: "/etc/prometheus/prometheus.yml"
global:
dcontroller: "dcontroller"
dns:
- 8.8.8.8
- 1.1.1.1
packages:
alpine:
sshfs: "sshfs"
wireguard: "wireguard-virt wireguard-tools ip6tables"
node_exporter: "prometheus-node-exporter"
java: "openjdk8-jre"
extra: "shadow"
debian:
sshfs: "sshfs"
wireguard: "wireguard"
node_exporter: "node_exporter"
freebsd:
sshfs: "fusefs-sshfs"
wireguard: "wireguard"
node_exporter: "node_exporter"
openbsd:
sshfs: "sshfs-fuse"
wireguard: "wireguard-tools"
node_exporter: "node_exporter"
|