From 7f8d3788190a4318ba9af8881cf2e5ab9105e09a Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sun, 11 Mar 2018 22:15:59 -0700 Subject: [PATCH] Commenting out some debug stuff --- tasks/main.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tasks/main.yaml b/tasks/main.yaml index 3d868d1..abac310 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: -- GitLab