formula_specialties: fix AWS standard_instructions

Closes Homebrew/homebrew#27398.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Tung Nguyen 2014-03-10 18:45:24 -07:00 committed by Mike McQuaid
parent 2dbd5fd509
commit c8478e8ce3

View File

@ -30,22 +30,15 @@ class AmazonWebServicesFormula < Formula
# Use this method to generate standard caveats.
def standard_instructions home_name, home_value=libexec
<<-EOS.undent
Before you can use these tools you must export some variables to your $SHELL
and download your X.509 certificate and private key from Amazon Web Services.
Your certificate and private key are available at:
http://aws-portal.amazon.com/gp/aws/developer/account/index.html?action=access-key
Download two ".pem" files, one starting with `pk-`, and one starting with `cert-`.
You need to put both into a folder in your home directory, `~/.ec2`.
Before you can use these tools you must export some variables to your $SHELL.
To export the needed variables, add them to your dotfiles.
* On Bash, add them to `~/.bash_profile`.
* On Zsh, add them to `~/.zprofile` instead.
export JAVA_HOME="$(/usr/libexec/java_home)"
export EC2_PRIVATE_KEY="$(/bin/ls "$HOME"/.ec2/pk-*.pem | /usr/bin/head -1)"
export EC2_CERT="$(/bin/ls "$HOME"/.ec2/cert-*.pem | /usr/bin/head -1)"
export AWS_ACCESS_KEY="<Your AWS Access ID>"
export AWS_SECRET_KEY="<Your AWS Secret Key>"
export #{home_name}="#{home_value}"
EOS
end