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: If3e4366c22e900557e4730a7e8838f55ffe30ecc
This commit is contained in:
15 changed files with 33 additions and 33 deletions
@@ -28,7 +28,7 @@
daemon_reload:yes
with_items:"{{ filtered_nova_services }}"
register:_stop
until:_stop | success
until:_stop is success
retries:5
delay:2
listen:"Restart nova services"
@@ -59,7 +59,7 @@
daemon_reload:yes
with_items:"{{ filtered_nova_services }}"
register:_start
until:_start | success
until:_start is success
retries:5
delay:2
listen:"Restart nova services"
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.