运维

shell脚本之服务器意外断电检测

2020-08-20  本文已影响0人  上帝是自由的

脚本说明

#!/bin/bash 
# checkreboot status
mkdir /opt/scripts
touch /root/error.log
cd /opt/scripts
cat << eof > chkboot.sh
#!/bin/bash
file="/tmp/checkreboot"
if [ -e \$file ];then
    echo \`date\` "system boot is ok!!!" >> /root/error.log
    /bin/rm /tmp/checkreboot
else
    echo \`date\` "The system boot abnormally, will restart" >> /root/error.log
    /usr/sbin/reboot
fi
eof

cat << eof > touch.sh
#!/bin/bash
touch /tmp/checkreboot
eof
chmod +x touch.sh



cat << eof > /usr/lib/systemd/system/stopSrv.service 
[Unit]
Description=close services before reboot and shutdown
DefaultDependencies=no
Before=shutdown.target reboot.target halt.target
# This works because it is installed in the target and will be
#   executed before the target state is entered
# Also consider kexec.target

[Service]
Type=oneshot
ExecStart=/opt/scripts/touch.sh  #your path and filename

[Install]
WantedBy=halt.target reboot.target shutdown.target
eof
systemctl enable stopSrv

echo "/bin/sh /opt/scripts/chkboot.sh" >>/etc/rc.local
echo "Install is done!!!"

此脚本在centos7.3和7.8验证过,应该适用centos7+。

-萧瑟

上一篇 下一篇

猜你喜欢

热点阅读