Update register_logic example

This commit is contained in:
Michael DeHaan 2013-05-05 13:43:44 -04:00
parent 777dbc1048
commit 4569713d88

View file

@ -23,6 +23,11 @@
# here we run the next action only if the previous grep returned true
- action: shell echo "motd contains the word hi"
only_if: "${motd_result.rc} == 0"
when: motd_result.rc == 0
# alternatively:
- action: shell echo "motd contains the word hi"
when: motd_result.stdout.find('hi') != -1