0.4.00.4.10.4.2
|
Last change
on this file since b4db89d was
9bb220f,
checked in by Michael Medin <michael@…>, 3 years ago
|
+ Added new option append-filter-<key>=<value> to CheckEventLog to allow "and" of filter rules.
CheckEventLog file=application file=system filter=out MaxWarn=1 MaxCrit=1 filter-eventID=ne:1 filter-eventID=eq:1 append-filter-eventSource==SecurityCenter? truncate=1023 unique descriptions "syntax=%source%: %id% (%count%)"
+ Added debug option to CheckEventLog (to allow settingdebug on per-check)
+ Added obfuscated_password to NSCA section
+ Added so "global" ([Settings] password=...) passwords are read from the NSCA module
Also various changes to make it build with latest version of boost build.
|
-
Property mode set to
100644
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | @echo off
|
|---|
| 2 | @call env.bat
|
|---|
| 3 |
|
|---|
| 4 | echo :: %jam% --toolset=msvc --with-lua=%LUA_SOURCE% --with-openssl --include-path=%NSCP_INCLUDE% --with-boost --with-cryptopp=%CRYPTOPP_SOURCE% runtime-link=static warnings=off --with-psdk="%PLATTFORM_SDK_INCLUDE%" %* build-binaries >> build.log
|
|---|
| 5 | %jam% --toolset=msvc --with-lua=%LUA_SOURCE% --with-openssl --include-path=%NSCP_INCLUDE% --with-boost --with-cryptopp=%CRYPTOPP_SOURCE% runtime-link=static warnings=off --with-psdk="%PLATTFORM_SDK_INCLUDE%" %* build-binaries
|
|---|
| 6 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 7 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 8 |
|
|---|
| 9 | echo :: %jam% --toolset=msvc warnings=off %* build-archives >> build.log
|
|---|
| 10 | %jam% --toolset=msvc warnings=off %* build-archives
|
|---|
| 11 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 12 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 13 |
|
|---|
| 14 | echo :: %jam% --toolset=wix "--wix=%WIX_PATH%" %1=%2 %3=%4 build-installer >> build.log
|
|---|
| 15 | %jam% --toolset=wix "--wix=%WIX_PATH%" %1=%2 %3=%4 build-installer
|
|---|
| 16 | if %ERRORLEVEL% == 1 goto :error
|
|---|
| 17 | echo :: Result: %ERRORLEVEL% >> build.log
|
|---|
| 18 |
|
|---|
| 19 | exit /b 0
|
|---|
| 20 | goto :eof
|
|---|
| 21 |
|
|---|
| 22 | :error
|
|---|
| 23 | echo :: Error: %ERRORLEVEL% >> build.log
|
|---|
| 24 | echo *************
|
|---|
| 25 | echo * E R R O R *
|
|---|
| 26 | echo *************
|
|---|
| 27 |
|
|---|
| 28 | exit /b -1 |
|---|
Note: See
TracBrowser
for help on using the repository browser.