🚨 fix empty-string-compare

This commit is contained in:
otthorn 2021-02-16 15:42:10 +01:00
parent a02afd20b7
commit da1fa70e55
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
- name: DEBUG - name: DEBUG
debug: debug:
msg: "{{ ansible_facts['nodename'] }} : {{ result.stdout }}" msg: "{{ ansible_facts['nodename'] }} : {{ result.stdout }}"
when: result.stdout != "" when: result.stdout is defined
# Add info line by line # Add info line by line
- name: Dump all info into the local file - name: Dump all info into the local file
@ -28,4 +28,4 @@
lineinfile: lineinfile:
path: /tmp/ansible_dump_reboot_needed.txt path: /tmp/ansible_dump_reboot_needed.txt
line: "{{ ansible_facts['nodename'] }} : {{ result.stdout }}" line: "{{ ansible_facts['nodename'] }} : {{ result.stdout }}"
when: result.stdout != "" when: result.stdout is defined