# Runs the logwatch script looking for dmeventd syslog messages.
# The setup will run on the following interval:
#	 field          allowed values
#      -----          --------------
#      minute            0-59
#      hour               0-23
#      day of month  1-31
#      month            1-12 (or names, see below)
#      day of week   0-7 (0 or 7 is Sun, or use names)
#
# Some samples:
# */5 * * * * /usr/sbin/logwatch --service dmeventd
# This will run every five minutes, every hour, every day of the month, 
# every month of the year, every day of the week.
#
# 0-59 * * * * /usr/sbin/logwatch --service dmeventd
# This will run every minute, every hour, every day of the month, 
# every month of the year, every day of the week.
# (Note: this call also be accomplished with a */1 instead of 0-59)

 30 * * * * root /usr/sbin/logwatch --service dmeventd
 
