Comment 8 for bug 114730

Revision history for this message
Thomas Templin (coastgnu) wrote : Re: [Bug 114730] Re: /var/run/aide/ missing

Am Do, 17. Juli 2008 23:01:07 schrieb Jean-Baptiste Lallement:
> Storm, this is strange because the directory /var/run/aide is created
> during install by the postinst script.
>
> Can you check if /var/run/aide/ exists on your system ?

I added a test for the /var/run/aide directory to /etc/cron.daily/aide

---8<---
TMPBASE="/var/run/aide"
if [ ! -d $TMPBASE ] ; then
   # TMPBASE does not exist, create it
   mkdir $TMPBASE;
fi
LOCKFILE="$TMPBASE/cron.daily.lock"
---8<---

regards,
thomas