Correct swift service name in docs
The docs incorrectly show an example of:
enable_service swift
This does not work, it must be enabled on a per swift service
basis, like:
enable_service s-proxy s-object s-container s-account
Change-Id: Ib4ed8b43f777d308f5464d45dc87735e843c0daf
diff --git a/docs/source/stackrc.html b/docs/source/stackrc.html
index 23a48c5..d83fbc1 100644
--- a/docs/source/stackrc.html
+++ b/docs/source/stackrc.html
@@ -66,8 +66,8 @@
Certificate Authentication), Cinder (Scheduler, API, Volume), Horizon, MySQL, RabbitMQ, Tempest.
<pre>ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,n-cond,cinder,c-sch,c-api,c-vol,n-sch,n-novnc,n-xvnc,n-cauth,horizon,rabbit,tempest,$DATABASE_TYPE</pre>
Other services that are not enabled by default can be enabled in
- <code>localrc</code>. For example, to add Swift:
- <pre>enable_service swift</pre>
+ <code>localrc</code>. For example, to add Swift, use the following service names:
+ <pre>enable_service s-proxy s-object s-container s-account</pre>
A service can similarly be disabled:
<pre>disable_service horizon</pre></dd>