Fix usage of "|" for tests

With the more recent versions of ansible, we should now use
"is" instead of the "|" sign for the tests.

This should fix it.

Change-Id: Ie5d46021a433be3bf40243546ca1e10f05e2fe8e
This commit is contained in:
Jean-Philippe Evrard 2018-07-12 16:44:21 +02:00
parent f77205b26e
commit be6bbec459
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
name: mongodb
state: restarted
when:
- mongodb_bind | changed or mongodb_smallfiles | changed
- mongodb_bind | changed or mongodb_smallfiles is changed
register: mongodb_restart
- name: Wait for mongodb to come back online after the restart
wait_for:
@ -50,7 +50,7 @@
timeout: 30
when:
- mongodb_restart is defined
- mongodb_restart | changed
- mongodb_restart is changed
- name: Test mongodb connectivity
command: "mongo --host 10.100.100.2 --eval ' '"
changed_when: False