Fix runas as collection become plugin (#67638)

This commit is contained in:
Jordan Borean 2020-02-21 19:23:53 +10:00 committed by GitHub
parent 021ba057ab
commit 61f2ae1c26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -297,7 +297,7 @@ def _create_powershell_wrapper(b_module_data, module_path, module_args,
exec_manifest["async_timeout_sec"] = async_timeout
exec_manifest["async_startup_timeout"] = C.config.get_config_value("WIN_ASYNC_STARTUP_TIMEOUT", variables=task_vars)
if become and become_method == 'runas':
if become and become_method.split('.')[-1] == 'runas': # runas and namespace.collection.runas
finder.scan_exec_script('exec_wrapper')
finder.scan_exec_script('become_wrapper')