有的时候在实际使用过程中,需要在linux 关机或者重启前自动执行脚本,这可以通过systemctl命令来实现。
具体方法如下:
编写 service文件: vim /usr/lib/systemd/system/custom_shutdown.service
具体内容可以参考如下:
[Unit]
Description=close services before reboot and shutdown
DefaultDependencies=no
Before=shutdown.target reboot.target halt.target
[Service]
Type=oneshot
ExecStart=/scripts/automonitor.sh
[Install]
WantedBy=halt.target reboot.target shutdown.target
可以根据以上内容修改其中的ExecStart=/scripts/automonitor.sh 为自己想要的内容。即可
然后 systemctl enable custom_shutdown.service
即可在关机或者重启的时候执行上述指定的脚本。