annotate scripts/run_ami.sh @ 646:e76951e4da20

Style fixes. - Fix most lint errors found by http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py - Clean up commenting style. - Alphabetize #includes and using statements.
author ronw@google.com
date Tue, 11 Jun 2013 20:41:15 +0000
parents 5e888fbaaa80
children
rev   line source
tomwalters@29 1 #!/bin/bash
tomwalters@29 2 ec2-run-instances \
tomwalters@29 3 --user-data-file ec2_user_data.sh \
tomwalters@29 4 --key tom_eu_west \
tomwalters@29 5 --instance-type m1.small \
tomwalters@29 6 --instance-count 1 \
tomwalters@29 7 --region eu-west-1 \
tomwalters@29 8 --availability-zone eu-west-1b \
tomwalters@29 9 ami-2fc2e95b
tomwalters@29 10
tomwalters@29 11 ec2-attach-volume vol-d6fb18bf -i [INSTANCE_ID] -d /dev/sdf --region eu-west-1