Skip to content

Commit 690e3c2

Browse files
author
Davanum Srinivas
committed
Fix Typos found with misspell
git ls-files | grep -v locale | misspellings -f - Change-Id: I0dc56ba64ae4bdc681ccf4a1d2d23238f541650d
1 parent 552459c commit 690e3c2

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/source/configuration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h3>Common Configuration Variables</h3>
146146

147147
<dt>One syslog to bind them all</dt>
148148
<dd><em>Default: <code>SYSLOG=False SYSLOG_HOST=$HOST_IP SYSLOG_PORT=516</code></em><br />
149-
Logging all services to a single syslog can be convenient. Enable syslogging by seting <code>SYSLOG</code> to <code>True</code>. If the destination log host is not localhost <code>SYSLOG_HOST</code> and <code>SYSLOG_PORT</code> can be used to direct the message stream to the log host.
149+
Logging all services to a single syslog can be convenient. Enable syslogging by setting <code>SYSLOG</code> to <code>True</code>. If the destination log host is not localhost <code>SYSLOG_HOST</code> and <code>SYSLOG_PORT</code> can be used to direct the message stream to the log host.
150150
<pre>SYSLOG=True
151151
SYSLOG_HOST=$HOST_IP
152152
SYSLOG_PORT=516</pre></dd>

docs/source/guides/multinode-lab.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ <h3>Add the DevStack User</h3>
114114
<p>OpenStack runs as a non-root user that has sudo access to root. There is nothing special
115115
about the name, we'll use <code>stack</code> here. Every node must use the same name and
116116
preferably uid. If you created a user during the OS install you can use it and give it
117-
sudo priviledges below. Otherwise create the stack user:</p>
117+
sudo privileges below. Otherwise create the stack user:</p>
118118
<pre>groupadd stack
119119
useradd -g stack -s /bin/bash -d /opt/stack -m stack</pre>
120120
<p>This user will be making many changes to your system during installation and operation
121-
so it needs to have sudo priviledges to root without a password:</p>
121+
so it needs to have sudo privileges to root without a password:</p>
122122
<pre>echo "stack ALL=(ALL) NOPASSWD: ALL" &gt;&gt; /etc/sudoers</pre>
123123
<p>From here on use the <code>stack</code> user. <b>Logout</b> and <b>login</b> as the
124124
<code>stack</code> user.</p>
@@ -221,7 +221,7 @@ <h2>Options <small>pimp your stack</small></h2>
221221
</div>
222222

223223
<h3>Additional Users</h3>
224-
<p>DevStack creates two OpenStack users (<code>admin</code> and <code>demo</code>) and two tenants (also <code>admin</code> and <code>demo</code>). <code>admin</code> is exactly what it sounds like, a priveleged administrative account that is a member of both the <code>admin</code> and <code>demo</code> tenants. <code>demo</code> is a normal user account that is only a member of the <code>demo</code> tenant. Creating additional OpenStack users can be done through the dashboard, sometimes it is easier to do them in bulk from a script, especially since they get blown away every time
224+
<p>DevStack creates two OpenStack users (<code>admin</code> and <code>demo</code>) and two tenants (also <code>admin</code> and <code>demo</code>). <code>admin</code> is exactly what it sounds like, a privileged administrative account that is a member of both the <code>admin</code> and <code>demo</code> tenants. <code>demo</code> is a normal user account that is only a member of the <code>demo</code> tenant. Creating additional OpenStack users can be done through the dashboard, sometimes it is easier to do them in bulk from a script, especially since they get blown away every time
225225
<code>stack.sh</code> runs. The following steps are ripe for scripting:</p>
226226
<pre># Get admin creds
227227
. openrc admin admin
@@ -275,7 +275,7 @@ <h3>Volumes</h3>
275275
vgcreate stack-volumes /dev/sdc</pre>
276276

277277
<h3>Syslog</h3>
278-
<p>DevStack is capable of using <code>rsyslog</code> to agregate logging across the cluster.
278+
<p>DevStack is capable of using <code>rsyslog</code> to aggregate logging across the cluster.
279279
It is off by default; to turn it on set <code>SYSLOG=True</code> in <code>local.conf</code>.
280280
<code>SYSLOG_HOST</code> defaults to <code>HOST_IP</code>; on the compute nodes it
281281
must be set to the IP of the cluster controller to send syslog output there. In the example

docs/source/guides/single-machine.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ <h2>Installation <small>shake and bake</small></h2>
6969
</div>
7070

7171
<h3>Add your user</h3>
72-
<p>We need to add a user to install DevStack. (if you created a user during install you can skip this step and just give the user sudo priviledges below)</p>
72+
<p>We need to add a user to install DevStack. (if you created a user during install you can skip this step and just give the user sudo privileges below)</p>
7373
<pre>adduser stack</pre>
74-
<p>Since this user will be making many changes to your system, it will need to have sudo priviledges:</p>
74+
<p>Since this user will be making many changes to your system, it will need to have sudo privileges:</p>
7575
<pre>apt-get install sudo -y || yum install -y sudo
7676
echo "stack ALL=(ALL) NOPASSWD: ALL" &gt;&gt; /etc/sudoers</pre>
7777
<p>From here on you should use the user you created. <b>Logout</b> and <b>login</b> as that user.</p>
@@ -113,7 +113,7 @@ <h3>Run DevStack</h3>
113113
<h3>Using OpenStack</h3>
114114
<p>At this point you should be able to access the dashboard from other computers on the
115115
local network. In this example that would be http://192.168.1.201/ for the dashboard (aka Horizon).
116-
Launch VMs and if you give them floating IPs and security group access those VMs will be accessable from other machines on your network.</p>
116+
Launch VMs and if you give them floating IPs and security group access those VMs will be accessible from other machines on your network.</p>
117117

118118
<p>Some examples of using the OpenStack command-line clients <code>nova</code> and <code>glance</code>
119119
are in the shakedown scripts in <code>devstack/exercises</code>. <code>exercise.sh</code>

docs/source/openrc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ <h2>openrc <small>User authentication settings</small></h2>
6060
<dd>The introduction of Keystone to the OpenStack ecosystem has standardized the
6161
term <em>tenant</em> as the entity that owns resources. In some places references
6262
still exist to the original Nova term <em>project</em> for this use. Also,
63-
<em>tenant_name</em> is prefered to <em>tenant_id</em>.
63+
<em>tenant_name</em> is preferred to <em>tenant_id</em>.
6464
<pre>OS_TENANT_NAME=demo</pre></dd>
6565

6666
<dt>OS_USERNAME</dt>

tools/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
## prevent stray files in the workspace being added tot he docs)
1818
## -o <out-dir> Write the static HTML output to <out-dir>
1919
## (Note that <out-dir> will be deleted and re-created to ensure it is clean)
20-
## -g Update the old gh-pages repo (set PUSH=1 to actualy push up to RCB)
20+
## -g Update the old gh-pages repo (set PUSH=1 to actually push up to RCB)
2121

2222
# Defaults
2323
# --------

tools/xen/install_os_domU.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ if [ "$WAIT_TILL_LAUNCH" = "1" ] && [ -e ~/.ssh/id_rsa.pub ] && [ "$COPYENV" =
394394

395395
# Watch devstack's output (which doesn't start until stack.sh is running,
396396
# but wait for run.sh (which starts stack.sh) to exit as that is what
397-
# hopefully writes the succeded cookie.
397+
# hopefully writes the succeeded cookie.
398398
pid=`ssh_no_check -q stack@$OS_VM_MANAGEMENT_ADDRESS pgrep run.sh`
399399
ssh_no_check -q stack@$OS_VM_MANAGEMENT_ADDRESS "tail --pid $pid -n +1 -f /tmp/devstack/log/stack.log"
400400

0 commit comments

Comments
 (0)