Re: [ansible-project] How to perform bitwise operation inside ansible playbook

2021-09-03 Thread Reshma Pattan
Hi Brian, I tried using * ' |* ' operator inside the jinja template , but it was not considered as "btwise or " operator, instead it is considered as pipe for filter operation that follows it. The filter_plugin I tried is working now, there was a small coding issue inside the filetr.py file

[ansible-project] How to perform bitwise operation inside ansible playbook

2021-08-12 Thread Reshma Pattan
Hi, I am looking to perform "bitwise OR" operation like below inside the Ansible playbook. 0x102030 or 0x908060 I understood from the internet that there is no direct way to do this. So, as sugegsted in this post (How to perform bitwise operations in Ansible?