File tree Expand file tree Collapse file tree 6 files changed +19
-42
lines changed
roles/splunk_common/tasks Expand file tree Collapse file tree 6 files changed +19
-42
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Splunk-Ansible: Provisioning Splunk Enterprise the Easy Way
2
2
3
- [ ![ Build Status] ( https://circleci.com/gh/splunk/splunk-ansible/tree/develop.svg?style=svg )] ( https://circleci.com/gh/splunk/splunk-ansible/tree/develop )   ;
4
3
[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )   ;
5
4
[ ![ GitHub release] ( https://img.shields.io/github/v/tag/splunk/splunk-ansible?sort=semver&label=Version )] ( https://github.com/splunk/splunk-ansible/releases )
6
5
Original file line number Diff line number Diff line change 2
2
3
3
## Navigation
4
4
5
+ * [ 9.0.4] ( #904 )
5
6
* [ 9.0.0] ( #900 )
6
7
* [ 8.2.6] ( #826 )
7
8
* [ 8.2.5] ( #825 )
66
67
67
68
---
68
69
70
+ ## 9.0.4
71
+
72
+ #### Changes
73
+ * Support for latest major Splunk release
74
+ * Documentation updates + bugfixes
75
+
76
+ ---
77
+
69
78
## 9.0.0
70
79
71
80
#### Changes
Original file line number Diff line number Diff line change 1
1
---
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
+
2
9
- name : Get Splunk status
3
10
command : " {{ splunk.exec }} status --accept-license --answer-yes --no-prompt"
4
11
become : yes
Original file line number Diff line number Diff line change 93
93
- include_tasks : enable_splunkweb_ssl.yml
94
94
when :
95
95
- " 'http_enableSSL' in splunk and splunk.http_enableSSL is not none"
96
+ - splunk.http_enableSSL | bool
96
97
97
98
- include_tasks : enable_splunkd_ssl.yml
98
99
when : " 'ssl' in splunk and splunk.ssl"
130
131
- include_tasks : add_splunk_license.yml
131
132
132
133
- 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"
Original file line number Diff line number Diff line change 10
10
11
11
- name : " Restrict permissions on {{ file_path }}"
12
12
file :
13
- mode : " go -rwx"
13
+ mode : u+rw,g -rwx,o-rwx
14
14
path : " {{ file_path }}"
15
15
become : yes
16
16
become_user : " {{ splunk.user }}"
You can’t perform that action at this time.
0 commit comments