mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-15 05:52:24 +00:00
Improve jinja2 spacing: Remove space between join and ()
This change removes the space between join and (): "join ()" to "join()"
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user