1 Star 0 Fork 0

lurenchina/oklin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pkclusterpoweroff 624 Bytes
一键复制 编辑 原始数据 按行查看 历史
lurenchina 提交于 2024-07-23 11:01 . 第一次提交
#!/bin/bash
# -- rgdao.com
# check node public storage
function pk()
{
for i in `cat /etc/hosts |grep -v '#' |grep 110.1.1 |grep node |awk '{print $2}'`
do
ping -c 1 $i &>/dev/null
if [[ $? < 1 ]]
then
echo "compute $i poweroffing"
ssh $i -- poweroff &>/dev/null
else
echo "compute $i no respond"
fi
done
}
if [ `id -u` -eq 0 ];then
SN=yes
echo "HPC Cluster shutdown now: yes|no"
read -p 'Enter your action: ' READ
if [ $SN = $READ ]; then
pk
else
echo 'Incorrect input'
exit 0
fi
else
echo 'Is not the root user | Incorrect input'
exit 0
fi
#--end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lurenchina/oklin.git
git@gitee.com:lurenchina/oklin.git
lurenchina
oklin
oklin
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385