joshinryz

Results 3 issues of joshinryz

##### SUMMARY Line 114 of facts/acls/acls.py has: `port_pro = re.search(r"(eq|lt|gt|neq) (\w*)", ace)` this should be: `port_pro = re.search(r"(eq|lt|gt|neq) (\S*)", ace)` Otherwise protocols such as "ftp-data" fail a "word" match as...

acls

Ansible released a Inventory Plugin similar to this: https://docs.ansible.com/ansible/latest/collections/microsoft/ad/ldap_inventory.html @jborean93

##### SUMMARY When passing facts to fact_diff, if you add ignore_lines the process treats the dict like a list and adds its keys as strings (removing values). Specifically these lines:...