mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Add example of checking registered variable for emptiness. (#15510)
This commit is contained in:
committed by
Brian Coca
parent
6a983b0fc4
commit
0eead1a3f6
@@ -271,6 +271,22 @@ fields::
|
||||
with_items: home_dirs.stdout_lines
|
||||
# same as with_items: home_dirs.stdout.split()
|
||||
|
||||
As shown previously, the registered variable's string contents are accessible with the 'stdout' value.
|
||||
You may check the registered variable's string contents for emptiness::
|
||||
|
||||
- name: check registered variable for emptiness
|
||||
hosts: all
|
||||
|
||||
tasks:
|
||||
|
||||
- name: list contents of directory
|
||||
command: ls mydir
|
||||
register: contents
|
||||
|
||||
- name: check contents for emptiness
|
||||
debug: msg="Directory is empty"
|
||||
when: contents.stdout == ""
|
||||
|
||||
|
||||
.. seealso::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user