Skip to content

Commit 2079616

Browse files
author
Gabriel Monroy
committed
minor cleanup on provision controller script
1 parent 8990667 commit 2079616

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/provision-ec2-controller.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function echo_color {
5555
if ! ec2-describe-group | grep -q "$sg_name"; then
5656
echo_color "Creating security group: $sg_name"
5757
set -x
58-
ec2-create-group $sg_name -d "Managed by Deis"
58+
ec2-create-group $sg_name -d "Created by Deis"
5959
set +x
6060
echo_color "Authorizing TCP ports 22,80,443 from $sg_src..."
6161
set -x
@@ -69,7 +69,7 @@ fi
6969

7070
# create ssh keypair and store it
7171
if ! test -e $ssh_key_path; then
72-
echo "Creating new SSH key: $key_name"
72+
echo_color "Creating new SSH key: $key_name"
7373
set -x
7474
ec2-create-keypair $key_name > $ssh_key_path
7575
chmod 600 $ssh_key_path

0 commit comments

Comments
 (0)