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

ipaserver: Use jinja for list concatenation

With ansible-2.13 it is required to use jinja for list concatenation.

  list: "[] + ['a'] + ['b']"

needs to become

  list: "{{ [] + ['a'] + ['b'] }}"

copy_external_cert.yml needed to be changed.
parent 90f6e14c
Branches
Tags
No related merge requests found
......@@ -11,4 +11,4 @@
force: yes
- name: Install - Extend ipaserver_external_cert_files with "/root/{{ item | basename }}"
set_fact:
ipaserver_external_cert_files: "{{ ipaserver_external_cert_files }} + [ '/root/{{ item | basename }}' ]"
ipaserver_external_cert_files: "{{ ipaserver_external_cert_files + [ '/root/' + (item | basename) ] }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment