Skip to content
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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment