Remove the unnecessary space

Change-Id: Iaa281b06ee7f2675ee62e7aaebdb4e2fe9737b0e
This commit is contained in:
zhulingjie 2018-07-11 23:17:04 -04:00
parent 28070c979c
commit 11648896e7
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@
state: "started"
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _stop
until: _stop is success
until: _stop is success
retries: 5
delay: 2
listen: "Restart congress services"
@ -33,7 +33,7 @@
state: "started"
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
register: _start
until: _start is success
until: _start is success
retries: 5
delay: 2
listen: "Restart congress services"
@ -44,7 +44,7 @@
timeout: 25
delay: 10
register: _wait_check
until: _wait_check is success
until: _wait_check is success
retries: 5
listen: "Restart congress services"

View File

@ -21,7 +21,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