在systemctl上重新启动CentOS上的httpd后再运行一些命令

时间:2017-10-08 12:35:55

标签: command-line centos httpd.conf

每次httpd服务重新启动时,我都需要将一堆文件复制到某个文件夹中

e.g:

  

是的cp ./dynamic/*.file / folder / inside / my / webapp

有没有办法在httpd重启时运行一些额外的命令?

1 个答案:

答案 0 :(得分:0)

根据这个:https://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units

您可以使用以下命令编辑httpd服务文件:

sudo systemctl edit --full httpd.service

您应该能够向服务单元添加更多指令,例如运行其他命令。