Robert Kaussow
8d842b8393
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eo pipefail
|
|
URL=http://localhost
|
|
|
|
wget --quiet --tries=1 --spider ${URL}
|
|
[ $? -ne 0 ] && exit 1
|
|
|
|
exit 0
|