leandrobrunoo
(usa Ubuntu)
Enviado em 25/02/2010 - 08:52h
#!/bin/bash
#clear
#echo Verificando se o server_central estar ligado.
#echo == Caso contrario o server sera desligado. ==
ping 10.0.0.10 -c 1 >/dev/null;
if [ "$?" = "0" ] ;
then
#echo "";
#echo "O server_central estar 'Ligado'";
else
#echo "Desligando o server";
echo "Server desligado em: $(date)Status: ${STTS}" >> log_server.txt
shutdown -h now;
fi