2009-12-22 00:38:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-06-06 14:26:05 +00:00
|
|
|
class RdsCommandLineTools < AmazonWebServicesFormula
|
2012-04-26 04:05:56 +00:00
|
|
|
homepage 'http://aws.amazon.com/developertools/2928'
|
2012-09-04 01:17:41 +00:00
|
|
|
url 'http://s3.amazonaws.com/rds-downloads/RDSCli.zip'
|
|
|
|
version '1.9.002'
|
|
|
|
sha1 'f718bf2288461b0d2bc9b9479af1afdabecce4d6'
|
2009-12-22 00:38:19 +00:00
|
|
|
|
|
|
|
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
|