Hi
On Wed, Sep 17, 2014 at 01:22:51AM -0700, P wrote:
> Hi all,
>
> we have a playbook with several roles in it:
> roles:
> - role1
> - role2
> - role3
> - role4
> - role5
> - roleX
> ...
>
> These roles install some software but each checks at the very begin if the
> software is already installed
> and if it is - it aborts (using fail module). It turns out that i.e. if the
> role3 fails (because its software is already installed)
> the whole playbook also failes (ansible 1.7.1).
This is the expected behaviour. A failure is a failure...
> Is it possible to abort just particular role
> and let run the rest of the playbook ?
I would recommend changing the roles so that installation of new
software is skipped (instead of failing) when the software is already
present...
--
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 ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/4de3e97c-b389-4330-8e1d-54b7a9469cb1%40googlegroups.com.
You will need to handle failures and skipping on a per-task basis - that logic does not exist at the role level.As Karl noted, you should not use the fail module in this case. With Ansible (and just about every other configuration management system out there now), you define the state of the system as you want it to be, and Ansible will make the changes required to bring your system to that state. The fact that the software is already installed means your system is in the state expected, which is not a failure.
--
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 ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/523f8999-1639-4f0a-9e86-a847bc7833e5%40googlegroups.com.