`
42087743
  • 浏览: 238464 次
  • 性别: Icon_minigender_1
  • 来自: 合肥&上海
社区版块
存档分类
最新评论

ups定时轮询关机shell

阅读更多
1. 定时轮询gateway,如果unreachable则halt
#!/bin/bash
# Program:
#       Ping the gateway every 1 minute, if not reply shutdown the server.
# History:
#       2011-11-15 owen.chen First Release
ping 192.168.1.1 -c 1 -w 1 > /dev/null
RESPONSE=$?
if [ $RESPONSE != 0 ]; then
        halt
fi


2. 在crontab里配置定时任务
* * * * * root /home/admin/script/pollingTiming.sh
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics