Xymon Mailing List Archive search

Problem with BBWin 0.12 module

list Richard Finegold
Thu, 21 Jan 2010 16:40:03 -0800
Message-Id: <user-7a350d7ea9c4@xymon.invalid>

On Wed, Jan 20, 2010 at 03:07, Malcolm Hunter <user-b3e590ffeb6d@xymon.invalid> wrote:
<externals>
   <load name="nida" value="c:\monitoring\cygwin\bin\sh.exe "C:\Program Files\BBWin\ext\nida.nocr" timer="90s"/>
</externals>
The problem is the quotes around the script name - the quote before C:\Program Files closes the string. Try using the shortname:

value="c:\monitoring\cygwin\bin\sh.exe C:\PROGRA~1\BBWin\ext\nida.nocr"

Malcolm
Alternatively, since bbwin runs externals from BBWin\bin, you could
use a relative path (works here):
  value="c:\monitoring\cygwin\bin\sh.exe ..\ext\nida.nocr"
(You can similarly set the logpath relative, e.g. value="..\logs\BBWin.log")