Merge "Remove the unnecessary space"

This commit is contained in:
Zuul 2018-07-18 04:45:34 +00:00 committed by Gerrit Code Review
commit 783ec21ca7
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@
daemon_reload: yes daemon_reload: yes
with_items: "{{ filtered_nova_services }}" with_items: "{{ filtered_nova_services }}"
register: _stop register: _stop
until: _stop is success until: _stop is success
retries: 5 retries: 5
delay: 2 delay: 2
listen: "Restart nova services" listen: "Restart nova services"
@ -59,7 +59,7 @@
daemon_reload: yes daemon_reload: yes
with_items: "{{ filtered_nova_services }}" with_items: "{{ filtered_nova_services }}"
register: _start register: _start
until: _start is success until: _start is success
retries: 5 retries: 5
delay: 2 delay: 2
listen: "Restart nova services" listen: "Restart nova services"

View File

@ -47,7 +47,7 @@
update_cache: yes update_cache: yes
when: add_nv_repos is changed when: add_nv_repos is changed
register: update_apt_cache register: update_apt_cache
until: update_apt_cache is success until: update_apt_cache is success
retries: 5 retries: 5
delay: 2 delay: 2
tags: tags:

View File

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