Comment 3 for bug 109268

Revision history for this message
Thomas Templin (coastgnu) wrote :

There is a small bug in your file I suppose.
See also bug no #114730 "/var/run/aide/ missing"

The problem is in /etc/cron.daily/aide after line 39
 TMPBASE="/var/run/aide"
add:
       if [ ! -d $TMPBASE ] ; then
               # TMPBASE does not exist, create it
               mkdir $TMPBASE;
       fi