Skip to content
Snippets Groups Projects
Commit 8ac1a6e5 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

ipareplica: Add default(omit) for ipaclient role varaibles

To make sure that there will be no issue with undefined output from
ipareplica_test, the default(omit) has been added.
parent 76d436ec
Branches
Tags
No related merge requests found
...@@ -83,9 +83,9 @@ ...@@ -83,9 +83,9 @@
name: ipaclient name: ipaclient
vars: vars:
state: present state: present
ipaclient_domain: "{{ result_ipareplica_test.domain }}" ipaclient_domain: "{{ result_ipareplica_test.domain | default(omit) }}"
ipaclient_realm: "{{ result_ipareplica_test.realm }}" ipaclient_realm: "{{ result_ipareplica_test.realm | default(omit) }}"
ipaclient_servers: ["{{ result_ipareplica_test.server }}"] ipaclient_servers: "{{ ipareplica_servers | default(omit) }}"
ipaclient_hostname: "{{ result_ipareplica_test.hostname }}" ipaclient_hostname: "{{ result_ipareplica_test.hostname }}"
ipaclient_no_ntp: "{{ result_ipareplica_test.ipa_python_version ipaclient_no_ntp: "{{ result_ipareplica_test.ipa_python_version
< 40690 }}" < 40690 }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment