Remove the unnecessary space

Change-Id: I1cd0f166eec5444f116410c1deaad92345824cb1
This commit is contained in:
zhulingjie 2018-07-11 23:19:01 -04:00
parent b2020d5c10
commit 9d89be45a7
4 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,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
listen: Lxc container restart

View File

@ -94,7 +94,7 @@
args:
creates: "/var/lib/lxc/{{ inventory_hostname }}/setup.complete"
register: container_extra_commands
until: container_extra_commands is success
until: container_extra_commands is success
retries: 5
delay: 2
delegate_to: "{{ physical_host }}"

View File

@ -41,7 +41,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
@ -57,7 +57,7 @@
--logpriority {{ (debug | bool) | ternary('DEBUG', 'INFO') }}
delegate_to: "{{ physical_host }}"
register: _lxc_container_create
until: _lxc_container_create is success
until: _lxc_container_create is success
retries: 3
delay: 5
when:

View File

@ -145,7 +145,7 @@
command: "lxc-start -d -n container3"
register: container_start
changed_when: container_start.rc == 0
until: container_start is success
until: container_start is success
retries: 3
delay: 2