服务这样写:
[Unit] Description=nginx - high performance web server After=network-online.target remote-fs.target nss-lookup.target Wants=network-online.target [Service] Type=oneshot // 类型选 oneshot RemainAfterExit=yes // 退出之后保持active状态:active (exited) 没有的话,结束状态是:inactive (dead) ExecStart=/usr/bin/bash /root/test1.sh ExecStart=/usr/bin/bash /root/test2.sh // test2.sh 在 test1.sh 结束后,并且允许成功的时候,才执行。 [Install] WantedBy=multi-user.target
test1.sh 如果 exit(1), test2.sh 不会执行,并且服务状态是failed。
test1.sh 如果 exit(0-),test2.sh 继续执行,如果exit(1) 服务状态是failed, 否则是active。
如果在这个服务之后有依赖程序的话,RemainAfterExit=yes,配置很重要。否则不是active状态,后续的依赖程序不会执行。
例如,我的nginx程序,对这个服务强依赖,可以如下写:
[Unit] Description=nginx - high performance web server Documentation=http://nginx.org/en/docs/ After=network-online.target remote-fs.target nss-lookup.target Wants=network-online.target Requisite=test-init.service // 强依赖 [Service] LimitNOFILE=2048000 Type=forking PIDFile=/var/run/nginx.pid ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf ExecReload=/bin/kill -s HUP $MAINPID ExecStop=/bin/kill -s TERM $MAINPID [Install] WantedBy=multi-user.target
标签:test1,bin,systemd,test2,target,oneshot,sh,nginx,例子 From: https://www.cnblogs.com/hugetong/p/18502450