We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a2393f commit d29b887Copy full SHA for d29b887
roles/splunk/tasks/configure_dmc.yml
@@ -13,6 +13,18 @@
13
become: true
14
become_user: "{{ splunk_nix_user }}"
15
no_log: true
16
+ changed_when: peer_add.rc == 0
17
+ failed_when: peer_add.rc != 0 and peer_add.rc != 24
18
+
19
+- name: Create local dir if it doesn't exist
20
+ ansible.builtin.file:
21
+ path: "{{ splunk_home }}/etc/apps/splunk_monitoring_console/local"
22
+ state: directory
23
+ owner: "{{ splunk_nix_user }}"
24
+ group: "{{ splunk_nix_group }}"
25
+ mode: 0744
26
+ become: true
27
+ become_user: "{{ splunk_nix_user }}"
28
29
- name: Configure monitoring console in auto mode
30
community.general.ini_file:
0 commit comments