Centos7重启或关机前执行脚本

2022/7/16 5:20:19

本文主要是介绍Centos7重启或关机前执行脚本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

前言

为了实现在Centos7.9环境下重启前执行某些操作,在网上也找了许多资料,但是大多是以Centos6为教程,修改chkconfig和rc0.d,rc6.d的内容。在centos7中已经不适用了。

本文是以使用ststemctl的方式来自定义关机前执行脚本。

1.创建systemd服务

vi /usr/lib/systemd/system/stopSvc.service

创建该文件并写入如下内容,需要把ExecStart=/bbu/gnb/scripts/com/monitor.sh这一行换成自己的脚本路径

[Unit]
Description=close services before reboot and shutdown
DefaultDependencies=no
#Before=shutdown.target reboot.target halt.target
Before=network.target iscsi.service iscsid.service 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=/bbu/gnb/scripts/com/monitor.sh
​
[Install]
WantedBy=network.target iscsi.service iscsid.service

2.启动服务

执行

systemctl enable stopSvc

关机和重启前,就会自动执行你自定义的脚本



这篇关于Centos7重启或关机前执行脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程