mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 15:21:27 +00:00
display.error on no matching --start-at-task (#45221)
This commit is contained in:
committed by
Brian Coca
parent
864f266216
commit
869d866aa1
@@ -225,6 +225,13 @@ class PlaybookExecutor:
|
||||
display.display("No issues encountered")
|
||||
return result
|
||||
|
||||
if self._options.start_at_task and not self._tqm._start_at_done:
|
||||
display.error(
|
||||
"No matching task \"%s\" found. "
|
||||
"Note: --start-at-task can only follow static includes."
|
||||
% self._options.start_at_task
|
||||
)
|
||||
|
||||
return result
|
||||
|
||||
def _get_serialized_batches(self, play):
|
||||
|
||||
Reference in New Issue
Block a user