1.使用场景说明
如果想使用我们的systemctl管理shell脚本开机自启动,可以试试如下方法
2.systemctl管理配置中
#要使用systemctl开机启动的脚步路径
ls /data/shell/SO/container_management.sh
#配置systemctl管理文件
[root@localhost SO]# cat /etc/systemd/system/ctrstart.service [Unit] Description=My Script After=network.target [Service] Type=simple ExecStart=/data/shell/SO/container_management.sh Restart=on-failure [Install] WantedBy=multi-user.target
#设置下次开机自启动 systemctl enable ctrstart.service systemctl list-unit-files --type=service
3.业务脚本
[root@localhost SO]# cat container_management.sh #!/bin/bash 暂不做展示
标签:shell,开机,systemctl,SO,自启动,management From: https://www.cnblogs.com/Leonardo-li/p/18218014