[ansible-devel] bug in nxos_config module

2020-06-20 Thread Pushparaj Gothandam
Hi Team nxos_config module where Ansible cannot able to return below highlighted information from device rather it returns the config as changed. Is this a bug? please help Manual: lab.device.local(config)# logging server x.x.x.x 6 Can't configure more than 8 IP Servers Through Ansible: cha

Re: [ansible-devel] bug in nxos_config module

2020-07-02 Thread alicia
See https://docs.ansible.com/ansible/devel/user_guide/playbooks_error_handling.html#defining-changed for more details on changed_when. > On Jul 2, 2020, at 9:20 AM, Karol Czeryna wrote: > > Hi

Re: [ansible-devel] bug in nxos_config module

2020-07-02 Thread Nilashish Chakraborty
Hi Pushparaj, This seems to happen because the stderr regex in the NX-OS terminal plugin doesn't catch "Can't configure more than 8 IP Servers". However, with Ansible 2.9, the stdout and stderr regexes were made configurable options. Please refer to https://docs.ansible.com/ansible/latest/network/

Re: [ansible-devel] bug in nxos_config module

2020-07-05 Thread Pushparaj Gothandam
Thanks Nilashish ... On Friday, July 3, 2020 at 11:53:38 AM UTC+5:30, Nilashish Chakraborty wrote: > > Hi Pushparaj, > > This seems to happen because the stderr regex in the NX-OS terminal plugin > doesn't catch "Can't configure more than 8 IP Servers". However, with > Ansible 2.9, the stdout a