Transform config values to text immediately when they enter ansible

Convert configuration values from ENV VARS, config files, and defaults
in constants.py.
pull/19899/head
Toshio Kuratomi 8 years ago
parent 9b7c9931db
commit 4d355f8bf2

@ -123,18 +123,19 @@ def get_config(p, section, key, env_var, default, value_type=None, expand_relati
def _get_config(p, section, key, env_var, default): def _get_config(p, section, key, env_var, default):
''' helper function for get_config ''' ''' helper function for get_config '''
value = default
if env_var is not None: if env_var is not None:
value = os.environ.get(env_var, None) env_value = os.environ.get(env_var, None)
if value is not None: if env_value is not None:
return value value = env_value
if p is not None: if p is not None:
try: try:
# TODO: Once we branch Ansible-2.2, change to the following in devel value = p.get(section, key, raw=True)
#return to_text(p.get(section, key, raw=True), errors='surrogate_or_strict')
return p.get(section, key, raw=True)
except: except:
return default pass
return default
return to_text(value, errors='surrogate_or_strict')
def load_config_file(): def load_config_file():

Loading…
Cancel
Save