标签: command-line centos httpd.conf
每次httpd服务重新启动时,我都需要将一堆文件复制到某个文件夹中
e.g:
是的cp ./dynamic/*.file / folder / inside / my / webapp
有没有办法在httpd重启时运行一些额外的命令?
答案 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
您应该能够向服务单元添加更多指令,例如运行其他命令。