ansible-later/docs/content/configuration/excludes.md

22 lines
446 B
Markdown
Raw Permalink Normal View History

2020-10-08 00:01:13 +02:00
---
title: Exclude tasks
---
If you want to ignore individual tasks completely, you can use the `skip_ansible_later` tag.
## Example
<!-- prettier-ignore-start -->
<!-- spellchecker-disable -->
<!-- markdownlint-disable -->
{{< highlight Yaml "linenos=table" >}}
- name: Excluded task
command: "pwd"
tags:
- skip_ansible_later
{{< /highlight >}}
<!-- markdownlint-restore -->
<!-- spellchecker-enable -->
<!-- prettier-ignore-end -->