Improve jinja2 spacing: Remove space between join and ()

This change removes the space between join and (): "join ()" to "join()"
This commit is contained in:
Thomas Woerner
2023-01-17 11:51:38 +01:00
parent cc6a80fa88
commit d7c02d1347
37 changed files with 46 additions and 46 deletions

View File

@@ -3,7 +3,7 @@
block:
- name: Get Domain from server name
ansible.builtin.set_fact:
ipaserver_domain: "{{ ansible_facts['fqdn'].split('.')[1:] | join ('.') }}"
ipaserver_domain: "{{ ansible_facts['fqdn'].split('.')[1:] | join('.') }}"
when: "'fqdn' in ansible_facts"
- name: Set Domain to 'ipa.test' if FQDN could not be retrieved.
ansible.builtin.set_fact: