diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e25769e4..a82c0dd6 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,7 +1,7 @@ ## Changelog ## Navigation - +* [9.1.0.2](#9102) * [9.1.0.1](#9101) * [9.0.5](#905) * [9.0.4.1](#9041) @@ -74,6 +74,13 @@ --- +## 9.1.0.2 + +#### Changes +* Bugfixes + +--- + ## 9.1.0.1 #### Changes diff --git a/roles/splunk_common/tasks/main.yml b/roles/splunk_common/tasks/main.yml index 2c179c39..5b993845 100644 --- a/roles/splunk_common/tasks/main.yml +++ b/roles/splunk_common/tasks/main.yml @@ -73,9 +73,6 @@ - splunk.http_port | int != 8000 - include_tasks: set_mgmt_port.yml - when: - - "'svc_port' in splunk" - - splunk.svc_port | int != 8089 - include_tasks: set_root_endpoint.yml when: "'root_endpoint' in splunk and splunk.root_endpoint" diff --git a/roles/splunk_common/tasks/set_mgmt_port.yml b/roles/splunk_common/tasks/set_mgmt_port.yml index e0c2e514..20f5e2a8 100644 --- a/roles/splunk_common/tasks/set_mgmt_port.yml +++ b/roles/splunk_common/tasks/set_mgmt_port.yml @@ -4,6 +4,8 @@ dest: "{{ splunk.home }}/etc/system/local/web.conf" section: settings option: "mgmtHostPort" - value: "127.0.0.1:{{ splunk.svc_port }}" + value: "0.0.0.0:{{ splunk.svc_port }}" owner: "{{ splunk.user }}" group: "{{ splunk.group }}" + when: + - "'svc_port' in splunk"