Re: [ansible-project] Dependencies between plays

2016-10-13 Thread Kai Stian Olstad
On 13. okt. 2016 02:50, Nikita Gubenko wrote: Hello, folks Is there any possible way to make plays depend on each other? E.g. in the example below do not start play2 if any of the hosts in play1 failed? --- # play 1 - hosts: rabbitmq gather_facts: no sudo: yes serial: 1 rol

[ansible-project] Dependencies between plays

2016-10-13 Thread Nikita Gubenko
Hello, folks Is there any possible way to make plays depend on each other? E.g. in the example below do not start play2 if any of the hosts in play1 failed? --- # play 1 - hosts: rabbitmq gather_facts: no sudo: yes serial: 1 roles: - rabbitmq # play 2 - hosts: we