Robert Kaussow
d33311a25c
All checks were successful
continuous-integration/drone/pr Build is passing
11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# shellcheck disable=SC3040
|
|
set -eo pipefail
|
|
|
|
URL=http://127.0.0.1:8080/alive
|
|
|
|
! wget --quiet --tries=1 --spider ${URL} || exit 1
|
|
|
|
exit 0
|