mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
better message for unsupported include/imports
adhoc cannot currently execute these actions
This commit is contained in:
committed by
Toshio Kuratomi
parent
aade5234a9
commit
74107ff7cc
@@ -138,7 +138,7 @@ class AdHocCLI(CLI):
|
||||
raise AnsibleOptionsError(err)
|
||||
|
||||
# Avoid modules that don't work with ad-hoc
|
||||
if self.options.module_name in ('include', 'include_role'):
|
||||
if self.options.module_name.startswith(('include', 'import_')):
|
||||
raise AnsibleOptionsError("'%s' is not a valid action for ad-hoc commands" % self.options.module_name)
|
||||
|
||||
play_ds = self._play_ds(pattern, self.options.seconds, self.options.poll_interval)
|
||||
|
||||
Reference in New Issue
Block a user