Detect if core modules aren't installed and warn if that is the case
Fixes #11206
This commit is contained in:
parent
cc646c0a82
commit
627f9d73ba
1 changed files with 8 additions and 1 deletions
|
@ -275,6 +275,13 @@ class ModuleArgsParser:
|
||||||
|
|
||||||
# if we didn't see any module in the task at all, it's not a task really
|
# if we didn't see any module in the task at all, it's not a task really
|
||||||
if action is None:
|
if action is None:
|
||||||
|
if 'ping' not in module_loader:
|
||||||
|
raise AnsibleParserError("The requested action was not found in configured module paths. "
|
||||||
|
"Additionally, core modules are missing. If this is a checkout, "
|
||||||
|
"run 'git submodule update --init --recursive' to correct this problem.",
|
||||||
|
obj=self._task_ds)
|
||||||
|
|
||||||
|
else:
|
||||||
raise AnsibleParserError("no action detected in task", obj=self._task_ds)
|
raise AnsibleParserError("no action detected in task", obj=self._task_ds)
|
||||||
elif args.get('_raw_params', '') != '' and action not in RAW_PARAM_MODULES:
|
elif args.get('_raw_params', '') != '' and action not in RAW_PARAM_MODULES:
|
||||||
templar = Templar(loader=None)
|
templar = Templar(loader=None)
|
||||||
|
|
Loading…
Reference in a new issue