Skip to content
  • Thomas Woerner's avatar
    ipaserver: Use jinja for list concatenation · 0ff119a2
    Thomas Woerner authored
    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.
    0ff119a2