Skip to content

Commit f4baaa9

Browse files
committed
Fix install_apps Task, pull splunk#193
1 parent 7d244f9 commit f4baaa9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

roles/splunk/tasks/install_apps.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
# This task MUST be called by configure_apps.yml to work correctly. Do NOT call this task directly via the deployment_task var!
3-
- name: Set correct handler for master-apps
3+
- name: Set correct handler for master-apps or manager-apps
44
set_fact:
55
handler: "apply indexer cluster bundle"
6-
when: app_dest == 'etc/master-apps'
6+
when: app_dest == 'etc/master-apps' or app_dest == 'etc/manager-apps'
77

88
- name: Set correct handler for deployment-apps
99
set_fact:
@@ -22,6 +22,7 @@
2222
- app_dest != 'etc/shcluster/apps'
2323
- app_dest != 'etc/deployment-apps'
2424
- app_dest != 'etc/master-apps'
25+
- app_dest != 'etc/manager-apps'
2526

2627
- name: Check if correct vars are defined for SHC app management
2728
block:

0 commit comments

Comments
 (0)