Change-Id: Ia3c494be4460dc95f1119492dfef730c62467f34
| ... | ... |
@@ -192,7 +192,7 @@ if [[ $EUID -eq 0 ]]; then |
| 192 | 192 |
useradd -g stack -s /bin/bash -d $DEST -m stack |
| 193 | 193 |
fi |
| 194 | 194 |
|
| 195 |
- echo "Giving stack user passwordless sudo priviledges" |
|
| 195 |
+ echo "Giving stack user passwordless sudo privileges" |
|
| 196 | 196 |
# UEC images ``/etc/sudoers`` does not have a ``#includedir``, add one |
| 197 | 197 |
grep -q "^#includedir.*/etc/sudoers.d" /etc/sudoers || |
| 198 | 198 |
echo "#includedir /etc/sudoers.d" >> /etc/sudoers |
| ... | ... |
@@ -904,8 +904,8 @@ EOF |
| 904 | 904 |
fi |
| 905 | 905 |
|
| 906 | 906 |
|
| 907 |
-# Finalize queue instllation |
|
| 908 |
-# -------------------------- |
|
| 907 |
+# Finalize queue installation |
|
| 908 |
+# ---------------------------- |
|
| 909 | 909 |
|
| 910 | 910 |
if is_service_enabled rabbit; then |
| 911 | 911 |
# Start rabbitmq-server |
| ... | ... |
@@ -967,7 +967,7 @@ fi |
| 967 | 967 |
# Create a new named screen to run processes in |
| 968 | 968 |
screen -d -m -S $SCREEN_NAME -t shell -s /bin/bash |
| 969 | 969 |
sleep 1 |
| 970 |
-# Set a reasonable statusbar |
|
| 970 |
+# Set a reasonable status bar |
|
| 971 | 971 |
screen -r $SCREEN_NAME -X hardstatus alwayslastline "$SCREEN_HARDSTATUS" |
| 972 | 972 |
|
| 973 | 973 |
|
| ... | ... |
@@ -1501,8 +1501,8 @@ if is_service_enabled n-api; then |
| 1501 | 1501 |
# Get the sample configuration file in place |
| 1502 | 1502 |
cp $NOVA_DIR/etc/nova/api-paste.ini $NOVA_CONF_DIR |
| 1503 | 1503 |
|
| 1504 |
- # Rewrite the authtoken configration for our Keystone service. |
|
| 1505 |
- # This is a bit defensive to allow the sample file some varaince. |
|
| 1504 |
+ # Rewrite the authtoken configuration for our Keystone service. |
|
| 1505 |
+ # This is a bit defensive to allow the sample file some variance. |
|
| 1506 | 1506 |
sed -e " |
| 1507 | 1507 |
/^admin_token/i admin_tenant_name = $SERVICE_TENANT_NAME |
| 1508 | 1508 |
/admin_tenant_name/s/^.*$/admin_tenant_name = $SERVICE_TENANT_NAME/; |
| ... | ... |
@@ -1714,12 +1714,12 @@ if is_service_enabled swift; then |
| 1714 | 1714 |
sudo chown -R $USER: ${SWIFT_CONFIG_DIR} /var/run/swift
|
| 1715 | 1715 |
|
| 1716 | 1716 |
if [[ "$SWIFT_CONFIG_DIR" != "/etc/swift" ]]; then |
| 1717 |
- # Some swift tools are hard-coded to use ``/etc/swift`` and are apparenty not going to be fixed. |
|
| 1717 |
+ # Some swift tools are hard-coded to use ``/etc/swift`` and are apparently not going to be fixed. |
|
| 1718 | 1718 |
# Create a symlink if the config dir is moved |
| 1719 | 1719 |
sudo ln -sf ${SWIFT_CONFIG_DIR} /etc/swift
|
| 1720 | 1720 |
fi |
| 1721 | 1721 |
|
| 1722 |
- # Swift use rsync to syncronize between all the different |
|
| 1722 |
+ # Swift use rsync to synchronize between all the different |
|
| 1723 | 1723 |
# partitions (which make more sense when you have a multi-node |
| 1724 | 1724 |
# setup) we configure it with our version of rsync. |
| 1725 | 1725 |
sed -e " |