When running the playbook on all other hosts the pkg_mgr shows as yum, on a single host its showing as "pkg5"
Run against multiple hosts and this is the only one using pkg5
[ansible@prdansible01 tanium]$ ansible all -b -m yum -a "name=rsync state=latest"
devenv06 | FAILED! => {
    "ansible_facts": {
        "pkg_mgr": "pkg5"
    },
    "changed": true,
    "msg": "",
    "rc": 2,
    "results": [
        "> pkg@4.3.7\n> Error! Not more than one entry file/directory is expected\n"
    ]
}
I cant seem to find anything on this error or why its happening on this single host?
--
Update
confirming it is pulling back pkg5, can anyone tell me where that is configured on the host?
[ansible@prdansible01 ~]$ ansible -i 10.40.106.192, all -m setup | grep ansible_pkg_mgr
        "ansible_pkg_mgr": "pkg5",
[ansible@prdansible01 ~]$ ansible -i 10.40.106.188, all -m setup | grep ansible_pkg_mgr
        "ansible_pkg_mgr": "yum",
[ansible@prdansible01 ~]$
I cant seem to find anything on it.