The tags don't get inherited through the dynamic `include_tasks` command. Use `import_tasks` to preserve the tags.
21 lines
409 B
YAML
21 lines
409 B
YAML
---
|
|
|
|
# Subscribe
|
|
- import_tasks: subscribe.yml
|
|
|
|
# Install various software packages.
|
|
- import_tasks: packages.yml
|
|
|
|
# Configure worker initialization service.
|
|
- import_tasks: worker-initialization-service.yml
|
|
|
|
# Configure the worker.
|
|
- import_tasks: worker-config.yml
|
|
|
|
# Unregister
|
|
- import_tasks: unregister.yml
|
|
|
|
- name: Ensure SELinux contexts are updated
|
|
tags:
|
|
- always
|
|
command: restorecon -Rv /etc
|