Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 4ed7f95

Browse files
authored
Merge pull request #4 from weakcamel/replace_includes
replace include with import_tasks
2 parents 1134344 + 0c2098e commit 4ed7f95

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

meta/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
galaxy_info:
33
author: Waldek Maleska
44
role_name: loki
5+
namespace: weakcamel
56
description: Deploy and configure Loki and Promtail.
67
issue_tracker_url: https://github.com/weakcamel/ansible-role-loki/issues
78
license: WTFPL

tasks/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
---
2-
- include: preflight.yml
2+
- name: Pre-flight tasks
3+
import_tasks: preflight.yml
34
tags:
45
- loki_pre_install
56

6-
- include: install.yml
7+
- name: Installation tasks
8+
import_tasks: install.yml
79
become: true
810
tags:
911
- loki_configure
1012

11-
- include: configure.yml
13+
- name: Configuration tasks
14+
import_tasks: configure.yml
1215
become: true
1316
tags:
1417
- loki_configure

0 commit comments

Comments
 (0)