From 57daef636182a9437018a2251f26d06250c69513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Mattm=C3=BCller?= Date: Tue, 18 Jul 2023 12:58:49 +0200 Subject: [PATCH] playbooks/host-info: removed the temperature part MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit as the temperatures might not be available, they were completely removed Signed-off-by: Marc Mattmüller --- playbooks/getting_started/host-info.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/playbooks/getting_started/host-info.yml b/playbooks/getting_started/host-info.yml index 6ed5d27..a2efba2 100644 --- a/playbooks/getting_started/host-info.yml +++ b/playbooks/getting_started/host-info.yml @@ -27,10 +27,6 @@ register: getramusage ansible.builtin.shell: | free -h >> {{tmpFile}} - - name: Get Temperatures - register: gettemperatures - ansible.builtin.shell: | - /bin/bash -c "paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/' >> {{tmpFile}}" - name: Print all Information register: printall ansible.builtin.shell: |