Ansible 2.7 yum module issues

Anyone notice weirdness with ansible 2.7? I’m running 2.7.0 and the yum module doesn’t seem to be working as it’s supposed to. Previous ran ansible 2.6.x with success. Same module under 2.7.0:

fatal: [172.23.10.2]: FAILED! => {“changed”: false, “msg”: “Error from repoquery: [‘/usr/bin/repoquery’, ‘–show-duplicates’, ‘–plugins’, ‘–quiet’, ‘-c’, None, ‘–disablerepo’, ‘’, ‘–enablerepo’, ‘’, ‘–qf’, ‘%{epoch}:%{name}-%{version}-%{release}.%{arch}’, ‘glusterfs’]: Error accessing file for config file:///home/tsg/–disablerepo\nError accessing file for config file:///home/tsg/–disablerepo\n”}

I have no reference to file:///home/tsg/–disablerepo. I don’t know where it’s pulling this from.

Are you able to grab the yum module from the stable-2. 7 bench to give it a try? There were a couple fixes to it after 2.7.0 and are merged for 2.7.1. i know at least one had to do with config files but i don’t recall the symptoms so i can’t be sure it’s the same thing.

https://github.com/ansible/ansible/blob/stable-2.7/lib/ansible/modules/packaging/os/yum.py

-Toshio