mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-08-30 06:08:48 +02:00
8 lines
210 B
Bash
Executable File
8 lines
210 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ -n "${AWS_CLOUDWATCH_HOME:+x}" ]; then
|
|
${AWS_CLOUDWATCH_HOME}/bin/mon-cmd mon-describe-alarms-for-metric "$@"
|
|
else
|
|
echo AWS_CLOUDWATCH_HOME is not set
|
|
exit 1
|
|
fi
|