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
@@ -24,7 +24,7 @@
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options | default('') }}
register:install_packages
until:install_packages|success
until:install_packages is success
retries:5
delay:2
tags:
@@ -38,6 +38,6 @@
- name:Configure lxd init
command:"{{ nova_system_home_folder }}/lxd-init.sh"
when:lxd_init_script | changed
when:lxd_init_script is changed
tags:
- nova-lxd
@@ -24,7 +24,7 @@
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options | default('') }}
register:install_packages
until:install_packages|success
until:install_packages is success
retries:5
delay:2
tags:
@@ -24,7 +24,7 @@
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options|default('') }}
register:install_packages
until:install_packages|success
until:install_packages is success
retries:5
delay:2
tags:
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.