On Saturday, 24 November 2018 18:19:26 CET Pandu jh wrote: > I have 3 plays in a playbook. In a task in 1st play, If the desired value > is not set to variable, the execution should exist with success status and > remaining plays also should not get executed.
You could put play 2 and 3 in it's own file and use import_playbook: in play 1 with a when statement. Because import is static all the task in the plays will be imported and executed but because of the when they will all be skipped. -- 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/3996175.6CFn888PTg%40x1. For more options, visit https://groups.google.com/d/optout.
