TheBrick Asked: 2017-02-05 05:03:44 +0800 CST2017-02-05 05:03:44 +0800 CST 2017-02-05 05:03:44 +0800 CST 如果 samba 共享脱机,则停止 apache 服务 772 我正在 debian jessie 服务器上从 fstab 安装 samba 网络共享。在这些共享上,我正在存储 apache2 网络服务器使用的文件。 如果网络共享脱机,有没有办法停止 apache2 服务? apache-2.4 systemd debian-jessie 1 个回答 Voted Best Answer liske1 2017-02-06T01:05:57+08:002017-02-06T01:05:57+08:00 如果 samba 不工作,则此文件不可用时,您可以使用简单的 bash 脚本: if [ -a "path/to/file" ] then return 0; else systemctl stop apache2 return 0; fi 并将此脚本添加到 cron 每分钟。
如果 samba 不工作,则此文件不可用时,您可以使用简单的 bash 脚本:
并将此脚本添加到 cron 每分钟。