1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Inventory directory should always be absolute. Fixes #4535.

This commit is contained in:
Michael DeHaan 2013-10-30 20:48:53 -04:00
parent 7201a6ffad
commit b5c9d5a59b

View file

@ -431,8 +431,8 @@ class Inventory(object):
dname = os.path.dirname(self.host_list)
if dname is None or dname == '' or dname == '.':
cwd = os.getcwd()
return cwd
return dname
return os.path.abspath(cwd)
return os.path.abspath(dname)
def src(self):
""" if inventory came from a file, what's the directory and file name? """