diff --git a/tasks/main.yaml b/tasks/main.yaml
index 3d868d1e2f73fc6305454203d367c96d6e7d5dec..abac3108ad5e0288307c0b927366f984fabe284b 100644
--- a/tasks/main.yaml
+++ b/tasks/main.yaml
@@ -101,19 +101,19 @@
when: not rebooting|skipped
# Check our status
-- name: Check the timedatectl status
- command: timedatectl status
- register: time_status
- changed_when: false
-- debug:
- msg: "{{ time_status.stdout_lines }}"
-
-- name: Check the temperature
- command: awk '{print $0/1000 "C (" $0*9/5000+32 "F)"}' /sys/devices/platform/soc/3f804000.i2c/i2c-1/1-0068/hwmon/hwmon0/temp1_input
- register: temperature
- changed_when: false
-- debug:
- msg: "Temperature: {{ temperature.stdout }}"
+#- name: Check the timedatectl status
+# command: timedatectl status
+# register: time_status
+# changed_when: false
+#- debug:
+# msg: "{{ time_status.stdout_lines }}"
+
+#- name: Check the temperature
+# command: awk '{print $0/1000 "C (" $0*9/5000+32 "F)"}' /sys/devices/platform/soc/3f804000.i2c/i2c-1/1-0068/hwmon/hwmon0/temp1_input
+# register: temperature
+# changed_when: false
+#- debug:
+# msg: "Temperature: {{ temperature.stdout }}"
...
# vi: set ts=2 sts=2 sw=2 et ft=yaml: