Merge "Fix broken list concatenation in horizon role"

This commit is contained in:
Zuul 2023-12-06 15:58:46 +00:00 committed by Gerrit Code Review
commit ca8260eb09
2 changed files with 8 additions and 1 deletions

View File

@ -20,6 +20,6 @@
- name: Update custom policy file name
set_fact:
custom_policy: "{{ custom_policy }} + [ '{{ overwritten_files.results.0.stat.path }}' ]"
custom_policy: "{{ custom_policy + [overwritten_files.results.0.stat.path] }}"
when:
- overwritten_files.results

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Starting with ansible-core 2.13, list concatenation format is changed
which resulted in inability to override horizon policy files.
See `LP#2045660 <https://launchpad.net/bugs/2045660>`__
for more details.