mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-04 20:30:42 +00:00
446 B
446 B
title |
---|
Exclude tasks |
If you want to ignore individual tasks completely, you can use the skip_ansible_later
tag.
Example
{{< highlight Yaml "linenos=table" >}}
- name: Excluded task
command: "pwd"
tags:
- skip_ansible_later
{{< /highlight >}}