]> git.etc.gen.nz Git - update-motd.git/commitdiff
install cron jobs to run update-motd's hourly, daily, weekly, monthly jobs
authorDustin Kirkland <kirkland@canonical.com>
Mon, 10 Nov 2008 23:27:07 +0000 (00:27 +0100)
committerDustin Kirkland <kirkland@canonical.com>
Mon, 10 Nov 2008 23:27:07 +0000 (00:27 +0100)
debian/update-motd.cron.d

index 5538ab0bea3a060ce9d053cd5da56c188fd1455e..4bfbf143dde4b496cd21dd657ed06ce1002423f8 100644 (file)
@@ -1,6 +1,10 @@
 # /etc/cron.d/update-motd: crontab fragment for update-motd
 #
 # Running 'update-motd' dynamically generates the /etc/motd with
-# a concatenation of output from each script in /etc/update-motd.d.
+# a concatenation of output from each script in /etc/update-motd.d/*
 
 */10 * * * *   root    [ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd 2>/dev/null
+00 * * * *     root    [ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd hourly 2>/dev/null
+* 06 * * *     root    [ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd daily 2>/dev/null
+* * * * 1      root    [ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd weekly 2>/dev/null
+* * 1 * *      root    [ -x /usr/sbin/update-motd ] && /usr/sbin/update-motd monthly 2>/dev/null