Hi there,
I’ve got a problem with the ipaddr filter. It doesn’t seem to be loaded after installed in the same playbook:
example:
`
-
pip: name=netaddr state=latest
-
debug: msg=“{{ ‘192.0.2.0’ | ipaddr }}”
`
gives an error:
TASK [debug] ***********************************************************************************************************************************************************************************************
fatal: [localhost]: FAILED! => {“msg”: “The ipaddr filter requires python-netaddr be installed on the ansible controller”}
It seems that netaddr should be in the system before evoking ansible.
Is there any workaround to load the filter in the same playbook?
Thanks!