[Bug 231331] Re: aideini -y reports "34:syntax error:(" after fresh install

2008-07-19 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 157858 *** https://bugs.launchpad.net/bugs/157858 ** This bug has been marked a duplicate of bug 157858 aide.conf.autogenerated NOT properly generated -- aideini -y reports "34:syntax error:(" after fresh install https://bugs.launchpad.net/bugs/231331 Yo

[Bug 231331] Re: aideini -y reports "34:syntax error:(" after fresh install

2008-07-07 Thread fool
the 10_aide_hostname file does not start with /bin/bash, only /bin/sh. so perhaps if you ran: egrep -l "^#!/bin/" * | xargs chmod 755 things would work for you =) -- aideini -y reports "34:syntax error:(" after fresh install https://bugs.launchpad.net/bugs/231331 You received this bug notificat

[Bug 231331] Re: aideini -y reports "34:syntax error:(" after fresh install

2008-05-22 Thread Ralf Hildebrandt
% egrep -l "^#./bin/bash" * | xargs chmod 755 But it still won't work: # aideinit -y Running aide --init... 34:syntax error:( 34:Error while reading configuration:( Configuration error AIDE --init return code 17; see /var/lib/aide/aide.db.new for details -- aideini -y reports "34:syntax error:

[Bug 231331] Re: aideini -y reports "34:syntax error:(" after fresh install

2008-05-21 Thread davegermiquet
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

[Bug 231331] Re: aideini -y reports "34:syntax error:(" after fresh install

2008-05-21 Thread davegermiquet
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