Skip to content

Commit

Permalink
Merge pull request #660 from splunk/develop
Browse files Browse the repository at this point in the history
Release/8.2.3
  • Loading branch information
alishamayor authored Nov 1, 2021
2 parents 05fdd4d + 210a723 commit ebb6ca6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Navigation

* [8.2.3](#823)
* [8.2.2](#822)
* [8.2.1](#821)
* [8.2.0](#820)
Expand Down Expand Up @@ -54,6 +55,13 @@

---

## 8.2.3

#### Changes
* Bugfixes

---

## 8.2.2

#### What's New?
Expand Down
10 changes: 8 additions & 2 deletions roles/splunk_common/tasks/premium_apps/configure_ess.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---
- name: Enable SplunkEnterpriseSecuriteSuite app
command: "{{ splunk.exec }} enable app SplunkEnterpriseSecuritySuite -auth {{ splunk.admin_user }}:{{ splunk.password }}"
become: yes
become_user: "{{ splunk.user }}"

- name: Get ESS version
uri:
url: "{{ cert_prefix }}://127.0.0.1:{{ splunk.svc_port }}/services/apps/local/SplunkEnterpriseSecuritySuite?output_mode=json"
Expand All @@ -19,7 +24,8 @@
become: yes
become_user: "{{ splunk.user }}"
register: essinstall
changed_when: essinstall.rc == 0
failed_when: essinstall.rc != 0 and 'Unknown search command' not in essinstall.stderr
retries: 10
delay: 30
until: essinstall.rc == 0
notify:
- Restart the splunkd service
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,13 @@
- include_tasks: ../../../roles/splunk_common/tasks/provision_apps.yml
when:
- "'apps_location' in splunk and splunk.apps_location"
- not splunk_search_head_cluster | bool
- splunk.deployment_server is not defined or not splunk.deployment_server
vars:
app_list: "{{ splunk.apps_location }}"

- include_tasks: ../../../roles/splunk_common/tasks/provision_apps.yml
when:
- "'app_paths_install' in splunk and 'default' in splunk.app_paths_install and splunk.app_paths_install.default"
- not splunk_search_head_cluster | bool
- splunk.deployment_server is not defined or not splunk.deployment_server
vars:
app_list: "{{ splunk.app_paths_install.default }}"

Expand Down

0 comments on commit ebb6ca6

Please sign in to comment.