[ipa/server] Fix AnsibleUnsafeText error
The `-` character was evaluated as subtract operation, this should fix that issue. Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
parent
3d47ce35e4
commit
f7cb379e43
1 changed files with 2 additions and 2 deletions
|
@ -618,7 +618,7 @@
|
|||
- leftnode="{{ inventory_hostname }}"
|
||||
- rightnode="{{ hostvars[item]['ansible_hostname'] }}"
|
||||
- "ca"
|
||||
- "{{ inventory_hostname-hostvars[item]['ansible_hostname']}}"
|
||||
- "{{ inventory_hostname }}-{{ hostvars[item]['ansible_hostname']}}"
|
||||
with_items: "{{ (env == 'production')|ternary(groups['ipa'], groups['ipa_stg']) }}"
|
||||
ignore_errors: true
|
||||
tags:
|
||||
|
@ -635,7 +635,7 @@
|
|||
- leftnode="{{ inventory_hostname }}"
|
||||
- rightnode="{{ hostvars[item]['ansible_hostname'] }}"
|
||||
- "domain"
|
||||
- "{{ inventory_hostname-hostvars[item]['ansible_hostname']}}"
|
||||
- "{{ inventory_hostname }}-{{ hostvars[item]['ansible_hostname']}}"
|
||||
with_items: "{{ (env == 'production')|ternary(groups['ipa'], groups['ipa_stg']) }}"
|
||||
ignore_errors: true
|
||||
tags:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue