You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
304 B

  1. ---
  2. - name: enable exporter on listen address
  3. lineinfile:
  4. path: /etc/default/prometheus-node-exporter
  5. regexp: '^ARGS=(.*) \\'
  6. backrefs: yes
  7. line: 'ARGS=\1 -web.listen-address {{ prometheus_exporter_listen_address }}:{{ prometheus_exporter_listen_port }} \\'
  8. notify: restart exporter