Merge pull request #2074 from fangzhen/fix-domains-split
Make spliting system_search_domains more robust
This commit is contained in:
commit
ac4d782937
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
- name: add system search domains to docker options
|
- name: add system search domains to docker options
|
||||||
set_fact:
|
set_fact:
|
||||||
docker_dns_search_domains: "{{ docker_dns_search_domains | union(system_search_domains.stdout.split(' ')|default([])) | unique }}"
|
docker_dns_search_domains: "{{ docker_dns_search_domains | union(system_search_domains.stdout.split()|default([])) | unique }}"
|
||||||
when: system_search_domains.stdout != ""
|
when: system_search_domains.stdout != ""
|
||||||
|
|
||||||
- name: check number of nameservers
|
- name: check number of nameservers
|
||||||
|
|
Loading…
Reference in a new issue