galaxyproject / ansible-cvmfs

An Ansible role for installing and configuring CernVM-FS (CVMFS)
12 stars 17 forks source link

Fixed the syntax for combining two lists #44

Closed FokkeDijkstra closed 2 years ago

FokkeDijkstra commented 2 years ago

The way lists were combined in tasks/main.yml breaks the role in ansible-core 2.13.x. The resulting variable then contains two separate lists, instead of a combined list. As far as I could find the syntax "{{ list1 + list2 }}" is also the correct syntax to combine multiple lists into a single one.