Merge "Remove the unnecessary space"

This commit is contained in:
Zuul 2018-07-18 22:31:19 +00:00 committed by Gerrit Code Review
commit b7ecc18eb6
3 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@
force: "yes"
validate_certs: "{{ pip_validate_certs }}"
register: get_pip_local
until: get_pip_local is success
until: get_pip_local is success
retries: 5
delay: 2
run_once: yes
@ -42,7 +42,7 @@
validate_certs: "{{ pip_validate_certs }}"
when: get_pip_local is failed
register: get_pip_local_fallback
until: get_pip_local_fallback is success
until: get_pip_local_fallback is success
retries: 5
delay: 2
run_once: yes
@ -73,7 +73,7 @@
{{ pip_packages | map('quote') | join (' ') }}
changed_when: pip_local_cache.stdout.find('Successfully downloaded') != -1
register: pip_local_cache
until: pip_local_cache is success
until: pip_local_cache is success
retries: 3
delay: 2
notify:

View File

@ -21,7 +21,7 @@
force: "{{ pip_get_pip_force | bool }}"
validate_certs: "{{ pip_validate_certs }}"
register: get_pip
until: get_pip is success
until: get_pip is success
retries: 5
delay: 2
tags:
@ -36,7 +36,7 @@
validate_certs: "{{ pip_validate_certs }}"
when: get_pip is failed
register: get_pip_fallback
until: get_pip_fallback is success
until: get_pip_fallback is success
retries: 5
delay: 2
tags:

View File

@ -23,7 +23,7 @@
{{ pip_packages | map('quote') | join (' ') }}
changed_when: pip_install.stdout.find('Successfully installed') != -1
register: pip_install
until: pip_install is success
until: pip_install is success
retries: 3
delay: 2
@ -38,6 +38,6 @@
{{ pip_packages | map('quote') | join (' ') }}
changed_when: pip_install_fall_back.stdout.find('Successfully installed') != -1
register: pip_install_fall_back
until: pip_install_fall_back is success
until: pip_install_fall_back is success
retries: 3
delay: 2