refactor(service_facts): minor change

pull/83569/head
Hakula Chen 4 months ago
parent ce9b780795
commit 36d2f740b8

@ -446,9 +446,7 @@ def main():
), ),
supports_check_mode=True, supports_check_mode=True,
) )
args = dict( params = module.params
include_user=module.params['include_user'],
)
locale = get_best_parsable_locale(module) locale = get_best_parsable_locale(module)
module.run_command_environ_update = dict(LANG=locale, LC_ALL=locale) module.run_command_environ_update = dict(LANG=locale, LC_ALL=locale)
@ -457,7 +455,7 @@ def main():
for svc_module in service_modules: for svc_module in service_modules:
svcmod = svc_module(module) svcmod = svc_module(module)
if isinstance(svcmod, SystemctlScanService): if isinstance(svcmod, SystemctlScanService):
svc = svcmod.gather_services(args['include_user']) svc = svcmod.gather_services(params['include_user'])
else: else:
svc = svcmod.gather_services() svc = svcmod.gather_services()
if svc: if svc:

Loading…
Cancel
Save