blob: e674cbcf39bab79e0b7928a961d10d8c2d7567be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
class AutoScaling < AmazonWebServicesFormula
version '1.0.33.1'
homepage 'http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2535&categoryID=251'
url 'http://ec2-downloads.s3.amazonaws.com/AutoScaling-2010-08-01.zip'
md5 'e2cfe8820cd5906bf520cf6069d9b95d'
def install
standard_install
end
def caveats
standard_instructions "AWS_AUTO_SCALING_HOME"
end
end
|