mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
Port setup module to use the common module base
This commit is contained in:
parent
d79ba6f2aa
commit
d0a5dec686
1 changed files with 51 additions and 59 deletions
|
@ -598,37 +598,18 @@ def ansible_facts():
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
||||||
# load config & template variables
|
def run_setup(module):
|
||||||
|
|
||||||
if len(sys.argv) == 1:
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
|
|
||||||
argfile = sys.argv[1]
|
|
||||||
if not os.path.exists(argfile):
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
setup_options = open(argfile).read().strip()
|
|
||||||
try:
|
|
||||||
setup_options = json.loads(setup_options)
|
|
||||||
except:
|
|
||||||
list_options = shlex.split(setup_options)
|
|
||||||
setup_options = {}
|
setup_options = {}
|
||||||
for opt in list_options:
|
facts = ansible_facts()
|
||||||
(k,v) = opt.split("=")
|
|
||||||
setup_options[k]=v
|
|
||||||
|
|
||||||
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
for (k, v) in facts.items():
|
||||||
syslog.syslog(syslog.LOG_NOTICE, 'Invoked with %s' % setup_options)
|
|
||||||
|
|
||||||
# Get some basic facts in case facter or ohai are not installed
|
|
||||||
for (k, v) in ansible_facts().items():
|
|
||||||
setup_options["ansible_%s" % k] = v
|
setup_options["ansible_%s" % k] = v
|
||||||
|
|
||||||
# if facter is installed, and we can use --json because
|
# if facter is installed, and we can use --json because
|
||||||
# ruby-json is ALSO installed, include facter data in the JSON
|
# ruby-json is ALSO installed, include facter data in the JSON
|
||||||
|
|
||||||
if os.path.exists("/usr/bin/facter"):
|
if os.path.exists("/usr/bin/facter"):
|
||||||
cmd = subprocess.Popen("/usr/bin/facter --json", shell=True,
|
cmd = subprocess.Popen("/usr/bin/facter --json", shell=True,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
out, err = cmd.communicate()
|
out, err = cmd.communicate()
|
||||||
|
@ -641,11 +622,11 @@ if os.path.exists("/usr/bin/facter"):
|
||||||
for (k,v) in facter_ds.items():
|
for (k,v) in facter_ds.items():
|
||||||
setup_options["facter_%s" % k] = v
|
setup_options["facter_%s" % k] = v
|
||||||
|
|
||||||
# ditto for ohai, but just top level string keys
|
# ditto for ohai, but just top level string keys
|
||||||
# because it contains a lot of nested stuff we can't use for
|
# because it contains a lot of nested stuff we can't use for
|
||||||
# templating w/o making a nicer key for it (TODO)
|
# templating w/o making a nicer key for it (TODO)
|
||||||
|
|
||||||
if os.path.exists("/usr/bin/ohai"):
|
if os.path.exists("/usr/bin/ohai"):
|
||||||
cmd = subprocess.Popen("/usr/bin/ohai", shell=True,
|
cmd = subprocess.Popen("/usr/bin/ohai", shell=True,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
out, err = cmd.communicate()
|
out, err = cmd.communicate()
|
||||||
|
@ -660,11 +641,22 @@ if os.path.exists("/usr/bin/ohai"):
|
||||||
k2 = "ohai_%s" % k
|
k2 = "ohai_%s" % k
|
||||||
setup_options[k2] = v
|
setup_options[k2] = v
|
||||||
|
|
||||||
setup_result = {}
|
setup_result = {}
|
||||||
setup_result['ansible_facts'] = setup_options
|
setup_result['ansible_facts'] = setup_options
|
||||||
|
|
||||||
# hack to keep --verbose from showing all the setup module results
|
# hack to keep --verbose from showing all the setup module results
|
||||||
setup_result['verbose_override'] = True
|
setup_result['verbose_override'] = True
|
||||||
|
|
||||||
print json.dumps(setup_result)
|
return setup_result
|
||||||
|
|
||||||
|
def main():
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec = dict()
|
||||||
|
)
|
||||||
|
data = run_setup(module)
|
||||||
|
module.exit_json(**data)
|
||||||
|
|
||||||
|
# this is magic, see lib/ansible/module_common.py
|
||||||
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue