如何更改 apticron 的电子邮件间隔?

如何更改 apticron 的电子邮件间隔?

我有一个运行 Ubuntu 12.04 Server 的 VPS。当有可用更新时,Apticron 会每天发送电子邮件。我想将其更改为每周发送一次。

我查看了配置选项/etc/apticron/apticron.conf,但其中没有列出设置发送提醒电子邮件的不同间隔的选项。我也看不到要修改的相关 cronjob。

我可以更改apticron电子邮件发送间隔吗?

答案1

为了改变这种状况,你必须:

  1. 删除每日 cronjob(如果存在)

  2. 编辑/etc/cron.d/apticron设置,

    从:

     30 * * * * root if test -x /usr/sbin/apticron; then /usr/sbin/apticron --cron; else true; fi
    

    到:

     30 11 * * 0 root if test -x /usr/sbin/apticron; then /usr/sbin/apticron --cron; else true; fi
    

有很好的攻略,很好地解释了 cron 选项。

相关内容