2010-07-08 17:37:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-06-06 14:26:05 +00:00
|
|
|
class CloudWatch < AmazonWebServicesFormula
|
2012-07-01 20:30:55 +00:00
|
|
|
homepage 'http://aws.amazon.com/developertools/2534'
|
2012-09-20 18:59:57 +00:00
|
|
|
url 'http://ec2-downloads.s3.amazonaws.com/CloudWatch-2010-08-01.zip'
|
|
|
|
version '1.0.13.4'
|
|
|
|
sha1 '24f4cbe8554790b7abcc3c037172ab2efecae1af'
|
2010-07-18 11:32:21 +00:00
|
|
|
|
2010-07-08 17:37:32 +00:00
|
|
|
def install
|
|
|
|
standard_install
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
s = standard_instructions "AWS_CLOUDWATCH_HOME"
|
|
|
|
s += <<-EOS.undent
|
|
|
|
export SERVICE_HOME="$AWS_CLOUDWATCH_HOME"
|
|
|
|
EOS
|
|
|
|
return s
|
|
|
|
end
|
2011-02-22 19:36:18 +00:00
|
|
|
end
|