# HG changeset patch # User Luke Hoersten # Date 1589640245 18000 # Node ID c0dde2a4b2762dc632aaef81296409e01805ccb2 # Parent b4ad03deace129a4980c1776034fe159fcaff668 rpi-export: disable gpu temp before systemd config. diff -r b4ad03deace1 -r c0dde2a4b276 prometheus/rpi-client/tasks/main.yaml --- a/prometheus/rpi-client/tasks/main.yaml Thu May 14 08:25:10 2020 -0500 +++ b/prometheus/rpi-client/tasks/main.yaml Sat May 16 09:44:05 2020 -0500 @@ -11,6 +11,14 @@ dest: "/tmp/" notify: restart rpi_exporter +- name: disable GPU temp scraping + become: yes + lineinfile: + path: "/tmp/{{prometheus_client_rpi_dest}}/rpi_exporter.service" + regexp: "^ExecStart=/usr/local/bin/rpi_exporter" + line: "ExecStart=/usr/local/bin/rpi_exporter --no-collector.gpu" + when: not prometheus_client_rpi_collect_gpu_temp + - name: install systemd service for rpi-exporter become: yes copy: @@ -19,16 +27,6 @@ dest: "/lib/systemd/system/rpi_exporter.service" notify: restart rpi_exporter -- name: disable GPU temp scraping - become: yes - lineinfile: - path: "/lib/systemd/system/rpi_exporter.service" - regexp: "^ExecStart=/usr/local/bin/rpi_exporter" - line: "ExecStart=/usr/local/bin/rpi_exporter --no-collector.gpu" - when: not prometheus_client_rpi_collect_gpu_temp - notify: restart rpi_exporter - - - name: install rpi-exporter binary become: yes copy: