mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Merge pull request #1032 from mavimo/patch-2
Add support for ./ansible.cfg file
This commit is contained in:
@@ -35,13 +35,16 @@ def get_config(p, section, key, env_var, default):
|
||||
|
||||
def load_config_file():
|
||||
p = ConfigParser.ConfigParser()
|
||||
path1 = os.path.expanduser(
|
||||
os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg"))
|
||||
path2 = "/etc/ansible/ansible.cfg"
|
||||
path1 = os.getcwd() + "/ansible.cfg"
|
||||
path2 = os.path.expanduser(os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg"))
|
||||
path3 = "/etc/ansible/ansible.cfg"
|
||||
|
||||
if os.path.exists(path1):
|
||||
p.read(path1)
|
||||
elif os.path.exists(path2):
|
||||
p.read(path2)
|
||||
elif os.path.exists(path3):
|
||||
p.read(path3)
|
||||
else:
|
||||
return None
|
||||
return p
|
||||
|
||||
Reference in New Issue
Block a user