Remove the unnecessary space
Change-Id: Ieda328878ed08b30cec3d01e6d93899c7f7448df
This commit is contained in:
parent
491a100278
commit
90cd65e351
@ -87,7 +87,7 @@
|
||||
changed_when: false
|
||||
delegate_to: "{{ physical_host }}"
|
||||
register: _lxc_container_state
|
||||
until: _lxc_container_state is success
|
||||
until: _lxc_container_state is success
|
||||
retries: 3
|
||||
delay: 5
|
||||
when:
|
||||
@ -105,7 +105,7 @@
|
||||
--logpriority {{ (debug | bool) | ternary('DEBUG', 'INFO') }}
|
||||
delegate_to: "{{ physical_host }}"
|
||||
register: container_stop
|
||||
until: container_stop is success
|
||||
until: container_stop is success
|
||||
retries: 3
|
||||
failed_when:
|
||||
- container_stop.rc not in [0, 2]
|
||||
@ -126,7 +126,7 @@
|
||||
--logpriority {{ (debug | bool) | ternary('DEBUG', 'INFO') }}
|
||||
delegate_to: "{{ physical_host }}"
|
||||
register: container_start
|
||||
until: container_start is success
|
||||
until: container_start is success
|
||||
retries: 3
|
||||
when:
|
||||
- (_mc is defined and _mc | changed) or (_ec is defined and _ec | changed)
|
||||
|
@ -109,7 +109,7 @@
|
||||
name: "systemd-nspawn@{{ systemd_escape.stdout }}"
|
||||
state: restarted
|
||||
register: _container_restart
|
||||
until: _container_restart is success
|
||||
until: _container_restart is success
|
||||
retries: 3
|
||||
delay: 5
|
||||
delegate_to: "{{ physical_host }}"
|
||||
|
@ -73,7 +73,7 @@
|
||||
map(attribute='item') | list)
|
||||
| default(required_roles, True) }}"
|
||||
register: git_clone
|
||||
until: git_clone is success
|
||||
until: git_clone is success
|
||||
retries: "{{ git_clone_retries }}"
|
||||
delay: "{{ git_clone_retry_delay }}"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user