Skip to content

Commit

Permalink
added splunk_install_type conditional for var population (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
jewnix authored Jan 10, 2023
1 parent b8ed688 commit 119d7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/splunk/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
splunk_service: "{{ systemd_unit }}"
when:
- desired_start_method == "systemd"
when: "'full' in group_names"
when: ('full' in group_names or splunk_install_type == "full")

- block:
- name: Configure vars for uf package
Expand All @@ -73,7 +73,7 @@
splunk_service: "{{ systemd_unit }}"
when:
- desired_start_method == "systemd"
when: "'uf' in group_names"
when: ('uf' in group_names or splunk_install_type == "uf")

- name: Configure var for splunk init.d service handler
set_fact:
Expand Down

0 comments on commit 119d7df

Please sign in to comment.