Bug 105440

Summary: Incorrect example in audit documentation
Product: Documentation Reporter: Steve Wills <steve>
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Steve Wills 2006-11-12 14:00:44 UTC
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/audit-administration.html

contains this example:

Adding the following line to /etc/crontab will force the rotation every twelve hours from cron(8):

*     */12       *       *       *       root    /usr/sbin/audit -n

Unless I'm mistaken, that will run once a minute for an hour every twelve hours, not, not once as is implied.

Fix: 

Change example to:

0       */12    *       *       *       root    /usr/sbin/audit -n
Comment 1 dfilter service freebsd_committer freebsd_triage 2006-11-13 14:19:19 UTC
maxim       2006-11-13 14:19:12 UTC

  FreeBSD doc repository

  Modified files:
    en_US.ISO8859-1/books/handbook/audit chapter.sgml 
  Log:
  o Fin an incorrect crontab entry example.
  
  PR:             docs/105440
  Submitted by:   Steve Wills
  
  Revision  Changes    Path
  1.25      +1 -1      doc/en_US.ISO8859-1/books/handbook/audit/chapter.sgml
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 2 Maxim Konovalov freebsd_committer freebsd_triage 2006-11-13 14:19:30 UTC
State Changed
From-To: open->closed

Fixed.  Thanks!