| ... | ... |
@@ -174,7 +174,7 @@ These scripts are executed serially by ``exercise.sh`` in testing situations. |
| 174 | 174 |
the script on non-zero exit codes:: |
| 175 | 175 |
|
| 176 | 176 |
# This script exits on an error so that errors don't compound and you see |
| 177 |
- # only the first error that occured. |
|
| 177 |
+ # only the first error that occurred. |
|
| 178 | 178 |
set -o errexit |
| 179 | 179 |
|
| 180 | 180 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -21,10 +21,10 @@ export RUNNING_TIMEOUT=${RUNNING_TIMEOUT:-$(($BOOT_TIMEOUT + $ACTIVE_TIMEOUT))}
|
| 21 | 21 |
# Max time to wait for a vm to terminate |
| 22 | 22 |
export TERMINATE_TIMEOUT=${TERMINATE_TIMEOUT:-30}
|
| 23 | 23 |
|
| 24 |
-# Max time to wait for a euca-volume command to propogate |
|
| 24 |
+# Max time to wait for a euca-volume command to propagate |
|
| 25 | 25 |
export VOLUME_TIMEOUT=${VOLUME_TIMEOUT:-30}
|
| 26 | 26 |
|
| 27 |
-# Max time to wait for a euca-delete command to propogate |
|
| 27 |
+# Max time to wait for a euca-delete command to propagate |
|
| 28 | 28 |
export VOLUME_DELETE_TIMEOUT=${SNAPSHOT_DELETE_TIMEOUT:-60}
|
| 29 | 29 |
|
| 30 | 30 |
# The size of the volume we want to boot from; some storage back-ends |
| ... | ... |
@@ -11,7 +11,7 @@ echo "Begin DevStack Exercise: $0" |
| 11 | 11 |
echo "*********************************************************************" |
| 12 | 12 |
|
| 13 | 13 |
# This script exits on an error so that errors don't compound and you see |
| 14 |
-# only the first error that occured. |
|
| 14 |
+# only the first error that occurred. |
|
| 15 | 15 |
set -o errexit |
| 16 | 16 |
|
| 17 | 17 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0" |
| 10 | 10 |
echo "*********************************************************************" |
| 11 | 11 |
|
| 12 | 12 |
# This script exits on an error so that errors don't compound and you see |
| 13 |
-# only the first error that occured. |
|
| 13 |
+# only the first error that occurred. |
|
| 14 | 14 |
set -o errexit |
| 15 | 15 |
|
| 16 | 16 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -2,14 +2,14 @@ |
| 2 | 2 |
|
| 3 | 3 |
# **client-args.sh** |
| 4 | 4 |
|
| 5 |
-# Test OpenStack client authentication aguemnts handling |
|
| 5 |
+# Test OpenStack client authentication arguments handling |
|
| 6 | 6 |
|
| 7 | 7 |
echo "*********************************************************************" |
| 8 | 8 |
echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -2,14 +2,14 @@ |
| 2 | 2 |
|
| 3 | 3 |
# **client-env.sh** |
| 4 | 4 |
|
| 5 |
-# Test OpenStack client enviroment variable handling |
|
| 5 |
+# Test OpenStack client environment variable handling |
|
| 6 | 6 |
|
| 7 | 7 |
echo "*********************************************************************" |
| 8 | 8 |
echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0" |
| 10 | 10 |
echo "*********************************************************************" |
| 11 | 11 |
|
| 12 | 12 |
# This script exits on an error so that errors don't compound and you see |
| 13 |
-# only the first error that occured. |
|
| 13 |
+# only the first error that occurred. |
|
| 14 | 14 |
set -o errexit |
| 15 | 15 |
|
| 16 | 16 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -90,7 +90,7 @@ if [[ "$ENABLED_SERVICES" =~ "c-vol" ]]; then |
| 90 | 90 |
|
| 91 | 91 |
# Test volume has become available |
| 92 | 92 |
if ! timeout $RUNNING_TIMEOUT sh -c "while ! euca-describe-volumes $VOLUME | grep -q available; do sleep 1; done"; then |
| 93 |
- die $LINENO "volume didnt become available within $RUNNING_TIMEOUT seconds" |
|
| 93 |
+ die $LINENO "volume didn't become available within $RUNNING_TIMEOUT seconds" |
|
| 94 | 94 |
fi |
| 95 | 95 |
|
| 96 | 96 |
# Attach volume to an instance |
| ... | ... |
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0" |
| 10 | 10 |
echo "*********************************************************************" |
| 11 | 11 |
|
| 12 | 12 |
# This script exits on an error so that errors don't compound and you see |
| 13 |
-# only the first error that occured. |
|
| 13 |
+# only the first error that occurred. |
|
| 14 | 14 |
|
| 15 | 15 |
set -o errtrace |
| 16 | 16 |
|
| ... | ... |
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0" |
| 9 | 9 |
echo "*********************************************************************" |
| 10 | 10 |
|
| 11 | 11 |
# This script exits on an error so that errors don't compound and you see |
| 12 |
-# only the first error that occured. |
|
| 12 |
+# only the first error that occurred. |
|
| 13 | 13 |
set -o errexit |
| 14 | 14 |
|
| 15 | 15 |
# Print the commands being run so that we can see the command that triggers |
| ... | ... |
@@ -3,7 +3,7 @@ |
| 3 | 3 |
|
| 4 | 4 |
# Dependencies: |
| 5 | 5 |
# ``functions`` file |
| 6 |
-# ``lib/nova`` service is runing |
|
| 6 |
+# ``lib/nova`` service is running |
|
| 7 | 7 |
# <list other global vars that are assumed to be defined> |
| 8 | 8 |
# - ``DEST``, ``FILES`` |
| 9 | 9 |
# - ``ADMIN_PASSWORD`` |
| ... | ... |
@@ -78,7 +78,7 @@ function configure_tempest() {
|
| 78 | 78 |
# sudo python setup.py deploy |
| 79 | 79 |
|
| 80 | 80 |
# This function exits on an error so that errors don't compound and you see |
| 81 |
- # only the first error that occured. |
|
| 81 |
+ # only the first error that occurred. |
|
| 82 | 82 |
errexit=$(set +o | grep errexit) |
| 83 | 83 |
set -o errexit |
| 84 | 84 |
|
| ... | ... |
@@ -37,7 +37,7 @@ source $RC_DIR/lib/tls |
| 37 | 37 |
# The introduction of Keystone to the OpenStack ecosystem has standardized the |
| 38 | 38 |
# term **tenant** as the entity that owns resources. In some places references |
| 39 | 39 |
# still exist to the original Nova term **project** for this use. Also, |
| 40 |
-# **tenant_name** is prefered to **tenant_id**. |
|
| 40 |
+# **tenant_name** is preferred to **tenant_id**. |
|
| 41 | 41 |
export OS_TENANT_NAME=${OS_TENANT_NAME:-demo}
|
| 42 | 42 |
|
| 43 | 43 |
# In addition to the owning entity (tenant), nova stores the entity performing |
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
#!/usr/bin/env bash |
| 2 | 2 |
|
| 3 | 3 |
# Sample ``local.sh`` for user-configurable tasks to run automatically |
| 4 |
-# at the sucessful conclusion of ``stack.sh``. |
|
| 4 |
+# at the successful conclusion of ``stack.sh``. |
|
| 5 | 5 |
|
| 6 | 6 |
# NOTE: Copy this file to the root ``devstack`` directory for it to |
| 7 | 7 |
# work properly. |
| ... | ... |
@@ -37,7 +37,7 @@ fi |
| 37 | 37 |
builtin_name="Debian Squeeze 6.0 (32-bit)" |
| 38 | 38 |
builtin_uuid=$(xe template-list name-label="$builtin_name" --minimal) |
| 39 | 39 |
if [[ -z $builtin_uuid ]]; then |
| 40 |
- echo "Cant find the Debian Squeeze 32bit template on your XenServer." |
|
| 40 |
+ echo "Can't find the Debian Squeeze 32bit template on your XenServer." |
|
| 41 | 41 |
exit 1 |
| 42 | 42 |
fi |
| 43 | 43 |
|