Merge "Remove the unnecessary space"

This commit is contained in:
Zuul 2018-07-24 12:32:41 +00:00 committed by Gerrit Code Review
commit f075899894
3 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
with_items: "{{ filtered_glance_services }}"
register: _stop
until: _stop is success
until: _stop is success
retries: 5
delay: 2
listen: "Restart glance services"
@ -110,7 +110,7 @@
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
with_items: "{{ filtered_glance_services }}"
register: _start
until: _start is success
until: _start is success
retries: 5
delay: 2
listen: "Restart glance services"

View File

@ -84,7 +84,7 @@
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}"
register: install_packages
until: install_packages is success
until: install_packages is success
retries: 5
delay: 2

View File

@ -38,7 +38,7 @@
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options | default('') }}
register: install_packages
until: install_packages is success
until: install_packages is success
retries: 5
delay: 2