16 lines
227 B
Bash
Executable File
16 lines
227 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -eo pipefail
|
|
|
|
URL=http://127.0.0.1:8080
|
|
|
|
wget --quiet --tries=1 --spider ${URL}
|
|
[ $? -ne 0 ] && exit 1
|
|
|
|
CONTENT=$(wget --quiet -O - ${URL})
|
|
case "$CONTENT" in
|
|
*"Internal Error"*) exit 1 ;;
|
|
esac
|
|
|
|
exit 0
|