13 lines
246 B
Bash
13 lines
246 B
Bash
#!/bin/sh
|
|
|
|
curl -si localhost:8081/nexus/service/local/repositories | grep Central
|
|
RESPONSE=$?
|
|
|
|
if [ "$RESPONSE" = "0" ] ; then
|
|
echo "******** liveness is Alive ********"
|
|
exit 0;
|
|
else
|
|
echo "******** liveness is Dead ********"
|
|
exit 1;
|
|
fi
|
|
|