14 lines
143 B
Bash
Executable File
14 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "TEST HUGO"
|
|
|
|
$response = curl http://localhost:6060
|
|
if ($reponse == "HTTP/1.1 200 OK")
|
|
{
|
|
exit 0;
|
|
}
|
|
else
|
|
{
|
|
exit 1;
|
|
}
|