Merge pull request #1139 from lorin/config-precedence

ANSIBLE_CONFIG take precedence over ./ansible.cfg
This commit is contained in:
Michael DeHaan 2012-09-29 13:27:07 -07:00
commit 2d7691500e

View file

@ -35,8 +35,8 @@ def get_config(p, section, key, env_var, default):
def load_config_file(): def load_config_file():
p = ConfigParser.ConfigParser() p = ConfigParser.ConfigParser()
path1 = os.getcwd() + "/ansible.cfg" path1 = os.path.expanduser(os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg"))
path2 = os.path.expanduser(os.environ.get('ANSIBLE_CONFIG', "~/.ansible.cfg")) path2 = os.getcwd() + "/ansible.cfg"
path3 = "/etc/ansible/ansible.cfg" path3 = "/etc/ansible/ansible.cfg"
if os.path.exists(path1): if os.path.exists(path1):