Re: [ansible-project] mitogen and playbook_name

2023-10-18 Thread Kathy Lyons
Got it - makes sense now.  Thanks! On 10/17/2023 1:51 PM, 'Philippe Kueck' via Ansible Project wrote: You need to name the playbook: --- - name: "your playbook name goes here"   hosts: yourhostlist   tasks:     - debug:     msg: >   {{ansible_play_name}} should print  

[ansible-project] Re: Error handling in ios_config module

2023-10-18 Thread Peter Rubenstein
This seems to still be broken all these years later. I'm hitting the exact same issue with "crypto map". Is there a workaround? ansible --version ansible [core 2.15.4] config file = /home/plrub160/git/isp_link_change/ansible.cfg configured module search path =

Re: [ansible-project] Multipathd is not enabling

2023-10-18 Thread Will McDonald
This seems like a pretty glaring error: > ConditionPathExists=/etc/multipath.conf was not met This is likely nothing to do with Ansible. You're installing a multipath package, enabling a service, the service is failing to start automatically because it doesn't have any valid config. You should

Re: [ansible-project] Filter_data manipulation of the debug output .

2023-10-18 Thread dulhaver via Ansible Project
can you provide a bit more context, i.e. where does the variable `stat_out` comes from. Or maybe even better prodvide what debugging the entire variable throws at you debug: var: stat_out in order to see the data structur you are getting > On 10/18/2023 8:02 AM CEST Veera wrote:

Re: [ansible-project] Multipathd is not enabling

2023-10-18 Thread Prady A
Thank you . Due to some old iso image the multipath is not able to enable . We have to update the iso image it seems Thank you On Wed, Oct 18, 2023 at 14:08, dulhaver via Ansible Project < ansible-project@googlegroups.com> wrote: > hi, > > the syntax of your TASK sems not to match the docs for

[ansible-project] Filter_data manipulation of the debug output .

2023-10-18 Thread Veera
>From the below debug module , I try filter the ouput - name: status of the output debug: msg: "status of {{serverName}} is {{ [9] | map('extract', stat_out[0].split(',')) }}" register: server_status The output is TASK [status of the output]