On Friday, 24 August 2018 16.08.11 CEST Dimitri Yioulos wrote: > Actually, the value of " import_job_count" must be 0 (zero) in order for > the play to proceed. How do I do that?
You can choose one of these, they do the same but just written differently to just show you some options. hostvars.Host1.import_job_count.stdout | int == 0 hostvars['Host1']['import_job_count']['stdout'] | int == 0 hostvars['Host1'].import_job_count.stdout == "0" -- Kai Stian Olstad -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/7646153.FVJSFFxgod%40x1. For more options, visit https://groups.google.com/d/optout.
