summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2009-07-22 22:32:24 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2009-07-22 22:32:24 +0000
commitf87ad53eeefbebdbeb26426f3f1a1d7f679cf80f (patch)
treef18c80051d9c726dc222a61438b746ec8e9e7ce4 /app-forensics/aide
parentForced F77 to be FC to select proper fortran compiler. Closing bug #278714. (diff)
downloadgentoo-2-f87ad53eeefbebdbeb26426f3f1a1d7f679cf80f.tar.gz
gentoo-2-f87ad53eeefbebdbeb26426f3f1a1d7f679cf80f.tar.bz2
gentoo-2-f87ad53eeefbebdbeb26426f3f1a1d7f679cf80f.zip
Fixed aideinit -b issue, bug #277282.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/aide')
-rw-r--r--app-forensics/aide/ChangeLog5
-rwxr-xr-xapp-forensics/aide/files/aideinit4
2 files changed, 6 insertions, 3 deletions
diff --git a/app-forensics/aide/ChangeLog b/app-forensics/aide/ChangeLog
index b08f7b23091d..e5d2fd693d89 100644
--- a/app-forensics/aide/ChangeLog
+++ b/app-forensics/aide/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-forensics/aide
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-forensics/aide/ChangeLog,v 1.43 2009/06/01 16:30:01 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-forensics/aide/ChangeLog,v 1.44 2009/07/22 22:32:24 matsuu Exp $
+
+ 22 Jul 2009; MATSUU Takuto <matsuu@gentoo.org> files/aideinit:
+ Fixed aideinit -b issue, bug #277282.
01 Jun 2009; nixnut <nixnut@gentoo.org> aide-0.13.1-r3.ebuild:
ppc stable #270440
diff --git a/app-forensics/aide/files/aideinit b/app-forensics/aide/files/aideinit
index e0e933ce4b09..6a3c60c37837 100755
--- a/app-forensics/aide/files/aideinit
+++ b/app-forensics/aide/files/aideinit
@@ -114,9 +114,9 @@ if [ $opt_b -eq 1 ]; then
if [ -f "$dbfile" -a $opt_f -eq 0 ]; then
echo "$dbfile exists and -f was not specified" >> /var/log/aide/aideinit.errors
fi
- lines=`wc -l /var/log/aideinit.errors | awk '{ print $1 }'`
+ lines=`wc -l /var/log/aide/aideinit.errors | awk '{ print $1 }'`
if [ "$lines" -gt 0 ]; then
- (echo "AIDE init errors:"; cat /var/log/aide/aideinit.errors) | /usr/bin/mail -s "AIDE initialization problem" $MAILTO
+ (echo "AIDE init errors:"; cat /var/log/aide/aideinit.errors) | /bin/mail -s "AIDE initialization problem" $MAILTO
else
cp -f $outfile $dbfile
fi) &