From c8478e8ce3c91b8d8fd61dc05b2de7bc0b5f33fd Mon Sep 17 00:00:00 2001 From: Tung Nguyen Date: Mon, 10 Mar 2014 18:45:24 -0700 Subject: [PATCH] formula_specialties: fix AWS standard_instructions Closes Homebrew/homebrew#27398. Signed-off-by: Mike McQuaid --- Library/Homebrew/formula_specialties.rb | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Library/Homebrew/formula_specialties.rb b/Library/Homebrew/formula_specialties.rb index cdfd5cd662..807d5b6434 100644 --- a/Library/Homebrew/formula_specialties.rb +++ b/Library/Homebrew/formula_specialties.rb @@ -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="" + export AWS_SECRET_KEY="" export #{home_name}="#{home_value}" EOS end