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

Commit 9dd9a79

Browse files
committed
add required task names to blocks
1 parent 35cea59 commit 9dd9a79

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

tasks/install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
with_items:
3838
- "{{ loki_config_dir }}"
3939

40-
- block:
40+
- name: retrieve Loki binaries
41+
block:
4142
- name: download binaries to a temporary folder
4243
become: false
4344
ansible.builtin.get_url:

tasks/preflight.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
that: ansible_service_mgr == 'systemd'
55
msg: "This module only works with systemd"
66

7-
- block:
7+
- name: Get loki latest release
8+
block:
89
- name: Get latest release
910
ansible.builtin.uri:
1011
url: "https://api.github.com/repos/grafana/loki/releases/latest"
@@ -27,7 +28,8 @@
2728
- loki_version == "latest"
2829
- loki_binary_local_dir | length == 0
2930

30-
- block:
31+
- name: Load loki checksums
32+
block:
3133
- name: Get checksum list
3234
ansible.builtin.set_fact:
3335
__loki_checksums: >-

0 commit comments

Comments
 (0)