display.error on no matching --start-at-task (#45221)

pull/4420/head
Martin Krizek 2018-11-16 01:35:51 +01:00 committed by Brian Coca
parent 864f266216
commit 869d866aa1
1 changed files with 7 additions and 0 deletions

View File

@ -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):