pandorafms/pandora_plugins/EC2/CloudWatch/bin/mon-disable-alarm-actions.cmd

21 lines
529 B
Batchfile
Raw Normal View History

2017-11-14 15:17:27 +01:00
@call echo-helper
@echo off
setlocal
REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
set CHK_HOME=_%AWS_CLOUDWATCH_HOME%
if "%CHK_HOME:"=%" == "_" goto HOME_MISSING
"%AWS_CLOUDWATCH_HOME:"=%\bin\mon-cmd.cmd" mon-disable-alarm-actions %*
goto DONE
:HOME_MISSING
echo AWS_CLOUDWATCH_HOME is not set
exit /b 1
:DONE
endlocal