From 8ba6173232ab10bdd54d562b3f878eb43101034c Mon Sep 17 00:00:00 2001 From: Dan Garthwaite Date: Wed, 9 Oct 2019 21:46:53 -0400 Subject: [PATCH] Use busybox wget to ping :6300 --- chainquery/stuff/healthcheck.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chainquery/stuff/healthcheck.sh b/chainquery/stuff/healthcheck.sh index 7584e38..e8cb4a7 100644 --- a/chainquery/stuff/healthcheck.sh +++ b/chainquery/stuff/healthcheck.sh @@ -1,2 +1,2 @@ -#!/usr/bin/env bash -curl --fail http://localhost:6300/api/status || exit 1 +#!/bin/sh +busybox wget -O- http://localhost:6300/api/status