From stevewest15 at gmail.com Fri Apr 7 22:14:49 2006 From: stevewest15 at gmail.com (Steve West) Date: Fri, 7 Apr 2006 22:14:49 -0400 Subject: $DARCHOME directory Message-ID: Hello, I just downloaded darc-0.2 and I can't seem to figure out where in the check.sh file do I set the $DARCHOME? Sorry if this is a stupid question...but I would appreciate any help someone can offer. P.S. To Jacob and everyone else who worked on this darc, a big thank you for making darc available to the community! I've been monitoring the aide mailing list for weeks now trying to learn how to put aide to work on a small growing cluster. Your tool has just made it much simpler to manage it all. The only thing I need to figure out is how the aide config files work so I can start using aide and darc on our Redhat/CentOS 3.x & 4.x servers. thx, SW From martinson.jacob at gmail.com Fri Apr 7 22:25:26 2006 From: martinson.jacob at gmail.com (jacob martinson) Date: Fri, 7 Apr 2006 21:25:26 -0500 Subject: [darc] $DARCHOME directory In-Reply-To: References: Message-ID: <5b7479590604071925o192049dchefdb70c91e76126d@mail.gmail.com> Hi Steve, There are a couple ways to set DARCHOME. If you are running darc from the command line in an interactive shell you can set it manually each time like this: $ export DARCHOME=/some/path $ /path/to/check.sh Or you can just set it at the top of check.sh... just add the same export line near the top of check.sh, right before the PATH= statement. Version 0.3 is going to be a *lot* nicer and should be out in a week or two. Let me know if you run into any other problems or have any questions! Thanks! Jacob On 4/7/06, Steve West wrote: > Hello, > > I just downloaded darc-0.2 and I can't seem to figure out where in the > check.sh file do I set the $DARCHOME? Sorry if this is a stupid > question...but I would appreciate any help someone can offer. > > P.S. To Jacob and everyone else who worked on this darc, a big thank > you for making darc available to the community! I've been monitoring > the aide mailing list for weeks now trying to learn how to put aide to > work on a small growing cluster. Your tool has just made it much > simpler to manage it all. The only thing I need to figure out is how > the aide config files work so I can start using aide and darc on our > Redhat/CentOS 3.x & 4.x servers. > > thx, > > SW > From stevewest15 at gmail.com Fri Apr 7 23:31:34 2006 From: stevewest15 at gmail.com (Steve West) Date: Fri, 7 Apr 2006 23:31:34 -0400 Subject: [darc] $DARCHOME directory In-Reply-To: <5b7479590604071925o192049dchefdb70c91e76126d@mail.gmail.com> References: <5b7479590604071925o192049dchefdb70c91e76126d@mail.gmail.com> Message-ID: Hi Jacob, > Or you can just set it at the top of check.sh... just add the same > export line near the top of check.sh, right before the PATH= > statement. I can't find a PATH= statement? I added the following to the check.sh file but am I missing something else? #!/bin/bash # # DARC - configuration file # ## Custom Mod ## ## SW added DARC Home directory ## export DARCHOME=/some/path # Recipient list, separate multiple values with spaces rcptlist="user1 at dom.com user2 at dom.com" > Version 0.3 is going to be a *lot* nicer and should be out in a week or two. Can't wait to see it...hopefully it will be a seamless integration. thx, SW From martinson.jacob at gmail.com Fri Apr 7 23:47:51 2006 From: martinson.jacob at gmail.com (jacob martinson) Date: Fri, 7 Apr 2006 22:47:51 -0500 Subject: [darc] $DARCHOME directory In-Reply-To: References: <5b7479590604071925o192049dchefdb70c91e76126d@mail.gmail.com> Message-ID: <5b7479590604072047r54e41d1fg6b61d042354b62b8@mail.gmail.com> I think the file you pasted from there is config.sh. You need to set the DARCHOME variable in the check.sh file. On 4/7/06, Steve West wrote: > Hi Jacob, > > > Or you can just set it at the top of check.sh... just add the same > > export line near the top of check.sh, right before the PATH= > > statement. > > I can't find a PATH= statement? I added the following to the check.sh > file but am I missing something else? > > #!/bin/bash > # > # DARC - configuration file > # > > ## Custom Mod ## > ## SW added DARC Home directory ## > export DARCHOME=/some/path > > # Recipient list, separate multiple values with spaces > rcptlist="user1 at dom.com user2 at dom.com" > > > > Version 0.3 is going to be a *lot* nicer and should be out in a week or two. > > Can't wait to see it...hopefully it will be a seamless integration. > > thx, > > SW > From martinson.jacob at gmail.com Mon Apr 24 00:09:25 2006 From: martinson.jacob at gmail.com (jacob martinson) Date: Sun, 23 Apr 2006 23:09:25 -0500 Subject: darc-0.3.42 is available! Message-ID: <5b7479590604232109i7d701d5ao14c6b4dc2b3aed74@mail.gmail.com> I rewrote darc entirely in Python. It now has: * Better error handling and reporting * HTML reports for easier navigation within the report * Configurable timeout values for all relevant metrics - TCP connection timeouts, SFTP transfer time, AIDE run time * Built-in support for aide database maintenance tasks (init, update) so the manual file manipulation required in 0.2 is completely eliminated. There is new documentation for the app as well. Everything is available here: http://icculus.org/projects/darc/ Thanks! Jacob From martinson.jacob at gmail.com Sat Apr 29 18:43:47 2006 From: martinson.jacob at gmail.com (jacob martinson) Date: Sat, 29 Apr 2006 17:43:47 -0500 Subject: darc-0.3.48 is available Message-ID: <5b7479590604291543x74aff517pb7c033ff74d83ce8@mail.gmail.com> Changes - * 0.3.48 - Added support for automatically populating ~/.ssh/known_hosts with ssh-keyscan if needed. * 0.3.47 - Bugfix - unhandled exception was generated when newdb was missing @@end_db line * 0.3.46 - Bugfix - html typos in report when the 'failed hosts' section was present * 0.3.45 - Added mail_from config option to set the from address in report emails I added more content to the installation guide - http://icculus.org/projects/darc/install_guide/ and additional documentation on the darc config file - http://icculus.org/projects/darc/the_config_file/