Skip to content

Commit 2886995

Browse files
run role: Fix regression, cert tasks include
This was introduced with 98166bb
1 parent 7bf0bec commit 2886995

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

roles/run/tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,22 @@
5050
- "run_acmesh_config"
5151

5252

53-
- name: "Main | Include service or daemon management tasks: best platform matches (if any), then default"
53+
- name: "Main | Include certificate tasks: best platform matches (if any), then default"
5454
ansible.builtin.include_tasks:
5555
file: "{{ __run_acmesh_task_file }}"
5656
apply:
5757
tags:
58-
- "run_acmesh_service"
58+
- "run_acmesh_cert"
5959
vars:
60-
__run_acmesh_task_file: "{{ role_path }}/tasks/service/{{ __run_acmesh_loop_item }}"
60+
__run_acmesh_task_file: "{{ role_path }}/tasks/cert/{{ __run_acmesh_loop_item }}"
6161
when:
6262
- run_acmesh_state == 'present'
6363
- __run_acmesh_task_file is file
6464
loop: "{{ __run_acmesh_platform_filenames_most_specific_first + ['default.yml'] }}"
6565
loop_control:
6666
loop_var: "__run_acmesh_loop_item"
6767
tags:
68-
- "run_acmesh_service"
68+
- "run_acmesh_cert"
6969

7070

7171
- name: "Main | Include setup tasks (uninstall): best platform matches (if any), then default"

0 commit comments

Comments
 (0)