You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
Hi i wonder in which sittuations python functions can be used in templates, as i have found no infos on this in the documentation. For example this works:
- name: get some results shell: ls -lrt register: shell_res
- name: process shell res debug: msg="{{item}}" with_items: "{{shell_res.stdout.split('\n')}}"
so the split function is available here. Where too? Whereelse not?