mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #11618 from halberom/test-module
hacking/test-module, updated to new location and non-classness of module_common
This commit is contained in:
commit
95bf78d0e7
1 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ import optparse
|
|||
import ansible.utils as utils
|
||||
from ansible.parsing.utils.jsonify import jsonify
|
||||
from ansible.parsing.splitter import parse_kv
|
||||
import ansible.module_common as module_common
|
||||
import ansible.executor.module_common as module_common
|
||||
import ansible.constants as C
|
||||
|
||||
try:
|
||||
|
@ -90,7 +90,7 @@ def boilerplate_module(modfile, args, interpreter, check):
|
|||
#module_data = module_fh.read()
|
||||
#module_fh.close()
|
||||
|
||||
replacer = module_common.ModuleReplacer()
|
||||
#replacer = module_common.ModuleReplacer()
|
||||
|
||||
#included_boilerplate = module_data.find(module_common.REPLACER) != -1 or module_data.find("import ansible.module_utils") != -1
|
||||
|
||||
|
@ -119,7 +119,7 @@ def boilerplate_module(modfile, args, interpreter, check):
|
|||
if check:
|
||||
complex_args['CHECKMODE'] = True
|
||||
|
||||
(module_data, module_style, shebang) = replacer.modify_module(
|
||||
(module_data, module_style, shebang) = module_common.modify_module(
|
||||
modfile,
|
||||
complex_args,
|
||||
args,
|
||||
|
|
Loading…
Reference in a new issue