Skip to content

Commit 6a24b70

Browse files
Merge pull request #709 from splunk/develop
Release 9.0.4
2 parents 3c99851 + ee812d4 commit 6a24b70

File tree

6 files changed

+19
-42
lines changed

6 files changed

+19
-42
lines changed

.circleci/config.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Splunk-Ansible: Provisioning Splunk Enterprise the Easy Way
22

3-
[![Build Status](https://circleci.com/gh/splunk/splunk-ansible/tree/develop.svg?style=svg)](https://circleci.com/gh/splunk/splunk-ansible/tree/develop) 
43
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) 
54
[![GitHub release](https://img.shields.io/github/v/tag/splunk/splunk-ansible?sort=semver&label=Version)](https://github.com/splunk/splunk-ansible/releases)
65

docs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Navigation
44

5+
* [9.0.4](#904)
56
* [9.0.0](#900)
67
* [8.2.6](#826)
78
* [8.2.5](#825)
@@ -66,6 +67,14 @@
6667

6768
---
6869

70+
## 9.0.4
71+
72+
#### Changes
73+
* Support for latest major Splunk release
74+
* Documentation updates + bugfixes
75+
76+
---
77+
6978
## 9.0.0
7079

7180
#### Changes

roles/splunk_common/tasks/get_splunk_status.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
---
2+
- name: "Restrict permissions on splunk.key for Status"
3+
include_tasks: restrict_permissions.yml
4+
vars:
5+
file_path: "{{ item }}"
6+
with_items:
7+
- "{{ splunk.home }}/var/lib/splunk/kvstore/mongo/splunk.key"
8+
29
- name: Get Splunk status
310
command: "{{ splunk.exec }} status --accept-license --answer-yes --no-prompt"
411
become: yes

roles/splunk_common/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
- include_tasks: enable_splunkweb_ssl.yml
9494
when:
9595
- "'http_enableSSL' in splunk and splunk.http_enableSSL is not none"
96+
- splunk.http_enableSSL | bool
9697

9798
- include_tasks: enable_splunkd_ssl.yml
9899
when: "'ssl' in splunk and splunk.ssl"
@@ -130,4 +131,4 @@
130131
- include_tasks: add_splunk_license.yml
131132

132133
- include_tasks: disable_popups.yml
133-
when: "'disable_popups' in splunk and splunk.disable_popups | bool"
134+
when: "'disable_popups' in splunk and splunk.disable_popups | bool"

roles/splunk_common/tasks/restrict_permissions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
- name: "Restrict permissions on {{ file_path }}"
1212
file:
13-
mode: "go-rwx"
13+
mode: u+rw,g-rwx,o-rwx
1414
path: "{{ file_path }}"
1515
become: yes
1616
become_user: "{{ splunk.user }}"

0 commit comments

Comments
 (0)