mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Use isfile check on package manager paths
This commit is contained in:
committed by
Toshio Kuratomi
parent
631a10745d
commit
5bbf0d9cb6
@@ -330,7 +330,7 @@ class Facts(object):
|
||||
else:
|
||||
self.facts['pkg_mgr'] = 'unknown'
|
||||
for pkg in Facts.PKG_MGRS:
|
||||
if os.path.exists(pkg['path']):
|
||||
if os.path.isfile(pkg['path']):
|
||||
self.facts['pkg_mgr'] = pkg['name']
|
||||
|
||||
def get_service_mgr_facts(self):
|
||||
|
||||
Reference in New Issue
Block a user