forked from diogenxs/ansible-role-loki
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from weakcamel/replace_includes
replace include with import_tasks
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
--- | ||
- include: preflight.yml | ||
- name: Pre-flight tasks | ||
import_tasks: preflight.yml | ||
tags: | ||
- loki_pre_install | ||
|
||
- include: install.yml | ||
- name: Installation tasks | ||
import_tasks: install.yml | ||
become: true | ||
tags: | ||
- loki_configure | ||
|
||
- include: configure.yml | ||
- name: Configuration tasks | ||
import_tasks: configure.yml | ||
become: true | ||
tags: | ||
- loki_configure |