Remove the unnecessary space

Change-Id: I4edb409131d122b2e426d115ee94c4a986bd3606
This commit is contained in:
zhulingjie 2018-07-11 23:01:58 -04:00
parent 6802793bb9
commit 7c8e10977d
3 changed files with 13 additions and 13 deletions

View File

@ -20,7 +20,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -31,7 +31,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -42,7 +42,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -53,7 +53,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -64,7 +64,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -75,7 +75,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2
@ -86,7 +86,7 @@
state: restarted
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _restart
until: _restart is success
until: _restart is success
retries: 5
delay: 2

View File

@ -20,7 +20,7 @@
when:
- ansible_pkg_mgr in ['yum', 'dnf']
register: _add_yum_keys
until: _add_yum_keys is success
until: _add_yum_keys is success
retries: 5
delay: 2
@ -60,7 +60,7 @@
update_cache: "{{ (ansible_pkg_mgr == 'apt') | 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: 5
@ -91,7 +91,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
@ -112,7 +112,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
notify:
@ -130,7 +130,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
notify:

View File

@ -62,7 +62,7 @@
- name: Check apt-cacher-ng is running
command: "pgrep apt-cacher-ng"
register: pgrep_apt_cacher_ng
until: pgrep_apt_cacher_ng is success
until: pgrep_apt_cacher_ng is success
retries: 5
delay: 2
tags: