Merge "Remove the unnecessary space"

This commit is contained in:
Zuul 2018-08-17 04:43:15 +00:00 committed by Gerrit Code Review
commit 4a2e8123cd
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