Replace - with _ in setup module key names to avoid variable access problems reported in #954

This commit is contained in:
Timothy Appnel 2012-08-28 19:02:19 -04:00
parent b3353d8f86
commit d170c51545

6
setup
View file

@ -598,7 +598,7 @@ def run_setup(module):
facts = ansible_facts()
for (k, v) in facts.items():
setup_options["ansible_%s" % k] = v
setup_options["ansible_%s" % k.replace('-', '_')] = v
# if facter is installed, and we can use --json because
# ruby-json is ALSO installed, include facter data in the JSON
@ -614,7 +614,7 @@ def run_setup(module):
facter = False
if facter:
for (k,v) in facter_ds.items():
setup_options["facter_%s" % k] = v
setup_options["facter_%s" % k.replace('-', '_')] = v
# ditto for ohai, but just top level string keys
# because it contains a lot of nested stuff we can't use for
@ -632,7 +632,7 @@ def run_setup(module):
if ohai:
for (k,v) in ohai_ds.items():
if type(v) == str or type(v) == unicode:
k2 = "ohai_%s" % k
k2 = "ohai_%s" % k.replace('-', '_')
setup_options[k2] = v
setup_result = {}