Hy all,
I have one file with this content:
1,user1,host1,appli1
2,user2,host2,appli2
3,user1,host1.appli3
This task works :
- set_fact:
indice: “{{ item.split(‘,’)[0] }}”
with_lines: cat /home/ansible/ssh_manager/clef_applicatives.csv
when: item.split(‘,’)[1] == ansible_user and item.split(‘,’)[2] == inventory_hostname
delegate_to: localhost
- name: “Affichage de l’indice associe avec user et hostname”
debug:
var: indice
BUT my variable indice get only indice 3 but indice must get 1 and 3.
How make for that my variable indice get 1,2 or [1,2]
my variable indice get only last line !
Thank you very much guy !!
Regards,
Hy all,
I have one file with this content:
1,user1,host1,appli1
2,user2,host2,appli2
3,user1,host1.appli3
This task works :
*- set_fact:*
* indice: "{{ item.split(',')[0] }}"*
Change this :
* indice: "{{ item.split(',')[0] }}"*
To something like this (not tested, but you should have the idea) :
* indice: "{{ indice|default()|union(item.split(',')[0]) }}"*
Thanks for answer, for information i have this error :
fatal: [rebebsr6cweb01]: FAILED! => {“msg”: “Unexpected templating type error occurred on ({{ indice|default()|union(item.split(‘,’)[0]) }}): can only concatenate list (not "unicode") to list”}
Regards,
Like as said not tested, try to learn a little bit by yourself... It's a string so you have to turn it into a list.
Try this (not tested again)*
Hy Jean-Yves,
It’s works perfectly, you are the very the best i want become as you very !!
Thanks,
Regards