Initial commit: Imported yaala 0.7.3.
[yaala.git] / packaging / yaala.cron
1 #!/bin/bash
2 # Generate a report, if the logfile is found.
3
4 if [[ -s /var/log/httpd/access_log ]] ; then
5     /var/lib/yaala/yaala --config common_log.conf
6 fi
7
8 exit 0