So far, I'm unable to figure out how to duplicate my current dict with k:v addition.
Given this dict example:
list0:
ct0:
entry:
- dest: /tmp
owner: u1
source:
I'd like to get this result (source path being fetched with lookup fileglob
):
list0:
ct0:
entries:
- dest: /tmp
owner: u1
source: /bar/foo2
- dest: /tmp
owner: u1
source: /bar/foo1
- dest: /tmp
owner: u1
source: /bar/foo0
Did not get anything good yet.