当我更新 crontab 时,屏幕上会发出一条消息:
crontab: installing new crontab
是否可以对其进行配置(cron 或 crontab 或其他一些系统配置),以便它也向指定地址发送电子邮件?
我的环境如下:
$ uname -a
Linux dev 3.12.62-60.64.8-default #1 SMP Tue Oct 18 12:21:38 UTC 2016 (42e0a66) x86_64 x86_64 x86_64 GNU/Linux
我确实使用过aide
,但我正在寻找即时警报。
答案1
if crontab -e; then crontab -l | mail -s "New cron table installed for $(whoami) on $(hostname -s)" [email protected]; fi