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 4ec43b1 commit 3023303Copy full SHA for 3023303
splunk/common-files/checkstate.sh
@@ -27,7 +27,10 @@ if [[ "" == "$NO_HEALTHCHECK" ]]; then
27
28
case "$state" in
29
running|started)
30
- curl -m 30 -f -k https://localhost:8089/
+ if [[ "false" != "$SPLUNKD_SSL_ENABLE" ]]; then
31
+ curl -m 30 -f -k https://localhost:8089/
32
+ else
33
+ curl -m 30 -f -k http://localhost:8089/
34
exit $?
35
;;
36
*)
0 commit comments