7 lines
185 B
Bash
Executable File
7 lines
185 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Used for a basic HTTP health check
|
|
# Avoids output from non-errors and will fail if the HTTP response is unsuccessful
|
|
|
|
curl --silent --show-error --fail -o /dev/null "$@"
|