65d771fd37
Closes Homebrew/homebrew#11891. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
24 lines
672 B
Ruby
24 lines
672 B
Ruby
require 'formula'
|
|
|
|
class RdsCommandLineTools < AmazonWebServicesFormula
|
|
homepage 'http://aws.amazon.com/developertools/2928'
|
|
url 'http://s3.amazonaws.com/rds-downloads/RDSCli-1.6.001.zip'
|
|
md5 '7625dea485b3eaa7c28c57bb32d591ff'
|
|
|
|
def install
|
|
standard_install
|
|
end
|
|
|
|
def caveats
|
|
s = standard_instructions "AWS_RDS_HOME"
|
|
s += <<-EOS.undent
|
|
|
|
To check that your setup works properly, run the following command:
|
|
rds-describe-db-instances --headers
|
|
|
|
You should see a header line. If you have database instances already configured,
|
|
you will see a description line for each database instance.
|
|
EOS
|
|
return s
|
|
end
|
|
end
|