blob: 8f81f1095da34acb89a62a7649d34b921be51d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
class CloudWatch <AmazonWebServicesFormula
version '1.0.9.3'
homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2534&categoryID=251'
url 'http://ec2-downloads.s3.amazonaws.com/CloudWatch-2010-08-01.zip'
md5 'c07cd65f810f673cdd331f56a2c81dad'
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
end
|