Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions roles/splunk/tasks/install_apps.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
# This task MUST be called by configure_apps.yml to work correctly. Do NOT call this task directly via the deployment_task var!
- name: Set correct handler for master-apps
- name: Set correct handler for manager-apps
set_fact:
handler: "apply indexer cluster bundle"
when: app_dest == 'etc/master-apps'
when: app_dest == 'etc/master-apps' or app_dest == 'etc/manager-apps'

- name: Set correct handler for deployment-apps
set_fact:
Expand All @@ -22,6 +22,7 @@
- app_dest != 'etc/shcluster/apps'
- app_dest != 'etc/deployment-apps'
- app_dest != 'etc/master-apps'
- app_dest != 'etc/manager-apps'

- name: Check if correct vars are defined for SHC app management
block:
Expand Down