mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge branch 'setup-no-dash-facts' of https://github.com/tima/ansible into devel
Conflicts: library/setup
This commit is contained in:
commit
d0994cd169
1 changed files with 14 additions and 14 deletions
|
@ -684,7 +684,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
|
||||
|
@ -718,7 +718,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 = {}
|
||||
|
|
Loading…
Reference in a new issue