22 lines
615 B
Text
22 lines
615 B
Text
|
---
|
||
|
- name: Install Prometheus postgres-exporter
|
||
|
apt:
|
||
|
update_cache: true
|
||
|
name: prometheus-postgres-exporter
|
||
|
register: apt_result
|
||
|
retries: 3
|
||
|
until: apt_result is succeeded
|
||
|
when:
|
||
|
- ansible_lsb.codename != 'bullseye'
|
||
|
|
||
|
# Doesn't work on Debian Stretch with the old prometheus package
|
||
|
- name: Make Prometheus node-exporter listen on adm only
|
||
|
lineinfile:
|
||
|
path: /etc/default/prometheus-node-exporter
|
||
|
regexp: '^ARGS='
|
||
|
line: |
|
||
|
ARGS="--web.listen-address={{ ansible_hostname }}.adm.auro.re:9100"
|
||
|
notify: Restart prometheus-node-exporter
|
||
|
|
||
|
git push --set-upstream origin add_ups_231
|