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")