Skip to content

Commit 3295464

Browse files
author
Shawn Woodford
committed
Canceled? 🤨
1 parent b030f5e commit 3295464

5 files changed

+6
-6
lines changed

cloudwatch-logs-cleanup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function Warning(){
8787
read -r -p "Are you sure you understand and want to continue? (y/n) " CONTINUE
8888
HorizontalRule
8989
if ! [[ $CONTINUE =~ ^([yY][eE][sS]|[yY])$ ]]; then
90-
echo "Cancelled."
90+
echo "Canceled."
9191
tput sgr0
9292
exit 1
9393
fi

cloudwatch-logs-delete-groups.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function Warning(){
8989
read -r -p "Are you sure you understand and want to continue? (y/n) " CONTINUE
9090
HorizontalRule
9191
if ! [[ $CONTINUE =~ ^([yY][eE][sS]|[yY])$ ]]; then
92-
echo "Cancelled."
92+
echo "Canceled."
9393
tput sgr0
9494
exit 1
9595
fi

ec2-elb-export-template.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if [ "$CreateTemplateFile" = "true" ]; then
109109
echo $TemplateFileName
110110
read -r -p "Overwrite? (y/n) " OVERWRITE
111111
if ! [[ $OVERWRITE =~ ^([yY][eE][sS]|[yY])$ ]]; then
112-
echo "Cancelled."
112+
echo "Canceled."
113113
tput sgr0
114114
exit 1
115115
fi
@@ -169,7 +169,7 @@ if [ "$CreateNewELB" = "true" ]; then
169169
echo "An ELB Named $NewELBname Already Exists!"
170170
read -r -p "Continue and update the existing ELB $NewELBname with configuration from ELB $ELBname? (y/n) " CONTINUE
171171
if ! [[ $CONTINUE =~ ^([yY][eE][sS]|[yY])$ ]]; then
172-
echo "Cancelled."
172+
echo "Canceled."
173173
tput sgr0
174174
exit 1
175175
fi

s3-remove-glacier-objects.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fi
7070

7171
read -r -p "Warning: this will delete all objects from the S3 bucket with storage type Glacier! Proceed? (y/n) " Proceed
7272
if ! [[ $Proceed =~ ^([yY][eE][sS]|[yY])$ ]]; then
73-
fail "Cancelled."
73+
fail "Canceled."
7474
fi
7575

7676
S3BUCKETREGION=$(aws s3api get-bucket-location --bucket "$S3BUCKET" --output text --profile $profile 2>&1)

vpc-sg-import-rules-cloudfront.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function deleteExisting(){
209209
fi
210210
completed
211211
else
212-
echo "Cancelled."
212+
echo "Canceled."
213213
exit 1
214214
fi
215215
}

0 commit comments

Comments
 (0)