Sorry forgot to mention what the bug is,
The bug is some of the aide.conf.d files need to have execute permissions
because they are scripts.
You make them executable and things look fine.
--
aideini -y reports "34:syntax error:(" after fresh install
https://bugs.launchpad.net/bugs/231331
You re
I fixed this with this command: (found from debian bug)
for file in $(find /etc/aide/aide.conf.d/ -type f -print 2>/dev/null);
do if < $file head -n 1 | grep -q '^#!'; thenchmod 755
$file; fi; done
--
aideini -y reports "34:syntax error:(" after fresh install
https://bugs.launc