10 lines
131 B
Bash
10 lines
131 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -eo pipefail
|
||
|
URL=http://localhost:80
|
||
|
|
||
|
wget --quiet --tries=1 --spider ${URL}
|
||
|
[ $? -ne 0 ] && exit 1
|
||
|
|
||
|
exit 0
|