Re: [ansible-project] split with multiple columns in debug

2023-02-28 Thread Veera
Thanks Vladimir !!! On Tuesday, February 28, 2023 at 12:41:46 PM UTC+5:30 Vladimir Botka wrote: > On Mon, 27 Feb 2023 21:07:45 -0800 (PST) > Veera wrote: > > > load_avg: "{{ up_out.stdout_lines[0].split()[7:] }}" > > Given the registered variable *up_out* > > - command: uptime > register:

Re: [ansible-project] Template module doesn't work with any kind of loop

2023-02-28 Thread Adrian Sebastian Dutu
Seems this is caused by the path in the src. You can't put anything there except the file name, and it will look in playbooks/templates/filename. If i try to put a path, it throws that error. This behavior happens only with loops though. Without loops, I can put a full or relative path in the src

[ansible-project] Template module doesn't work with any kind of loop

2023-02-28 Thread dutu.a...@gmail.com
Hello, I'm having a textbook task (taken straight out from the documentation examples) using template and with_filetree: - name: axis pipeline template: src: "{{ item.src }}" dest: "{{ logstash_home }}/{{ item.path | splitext | first }}" with_filetree:

[ansible-project] Ansible 7.3.0 has been Released!

2023-02-28 Thread Anwesha Das
Hello everyone, We're happy to announce that the Ansible 7.3.0 package has been released! Ansible 7.3.0 will include ansible-core 2.14 as well as a curated set of Ansible collections to provide a vast number of modules and plugins. How to get it - This pre-release is available on

[ansible-project] New releases: ansible-core 2.14.3, ansible-core 2.13.8

2023-02-28 Thread Matt Martz
Hi all- we're happy to announce the general release of: - ansible-core 2.14.3 - ansible-core 2.13.8 How to get it - $ python3 -m pip install --user ansible-core==2.14.3 or $ python3 -m pip install --user ansible-core==2.13.8 The release artifacts can be found here: * ansible-core

Re: [ansible-project] split with multiple columns in debug

2023-02-28 Thread 'Rowe, Walter P. (Fed)' via Ansible Project
Excellent find Vladimir! I just shared this with my team. I was unaware of 'jc'. Walter -- Walter Rowe, Division Chief Infrastructure Services, OISM Mobile: 202.355.4123 On Feb 28, 2023, at 2:11 AM, Vladimir Botka wrote: On Mon, 27 Feb 2023 21:07:45 -0800 (PST) Veera wrote: load_avg: "{{