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: I65b167a65699e504dbd463be5225af24626a96cd
This commit is contained in:
Jean-Philippe Evrard 2018-07-12 16:44:21 +02:00
parent 5e3a7130de
commit afb740e676
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
systemd:
daemon_reload: yes
when:
- install_qdrouterd | changed
- install_qdrouterd is changed
tags:
- qdrouterd-apt-packages
- qdrouterd-yum-packages

View File

@ -48,4 +48,4 @@
- include: qdrouterd_restart.yml
static: no
when: qdrouterd_config_changed|changed
when: qdrouterd_config_changed is changed