Comment 2 for bug 2018193

Revision history for this message
Moses Moore (moses-ubuntu) wrote :

What I did in the meantime:
- see if the report tempfile is still in /var/lib/integrit
- cd /var/lib/integrit ; mv {current,known}.cdb # and pray to the divine for protection
- add this before the 'mail' line at the bottom of /etc/cron.daily/integrit:
  ```
  reportsize=$(stat -c %s "$REPORT")
  if [ $reportsize -gt 8388608 ]; then
      echo >&2 "$REPORT is $((reportsize / 1048576))MB email may not send"
  fi
  ```