我设置了一个 crontab。我已经安装了 AIDE,并且我有一个 AIDE 数据库来检查文件的完整性。
仅当文件被修改时,如何让 cron 给我发送电子邮件?
剧本:
#!/bin/bash
if aide -c /etc/aide/aide.conf --check
then echo "AIDE detected no changes"
else
echo "Alert!: AIDE detected changes!"
crontab:
* */12 * * * /root/script.sh | mail root@localhost.com