Move service start and chkconfig calls together

In the rest of the guide, we start a service and enable starting it at
boot time at the same time - do it here as well.

Change-Id: If53db8c139d06518bcd8243699db869d9806ce59
This commit is contained in:
Andreas Jaeger
2014-06-05 21:01:21 +02:00
parent 12dd6e717e
commit 2431835aeb

View File

@@ -40,8 +40,10 @@
<procedure>
<title>To configure the message broker service</title>
<step os="sles;opensuse;rhel;centos;fedora">
<para>Start the message broker service:</para>
<screen><prompt>#</prompt> <userinput>service rabbitmq-server start</userinput></screen>
<para>Start the message broker service and enable it to start when the
system boots:</para>
<screen><prompt>#</prompt> <userinput>service rabbitmq-server start</userinput>
<prompt>#</prompt> <userinput>chkconfig rabbitmq-server on</userinput></screen>
</step>
<step>
<para>The message broker creates a default account that uses
@@ -69,14 +71,6 @@
</note>
</step>
</procedure>
<procedure os="rhel;centos;fedora;sles;opensuse">
<title>To finalize installation</title>
<step>
<para>Configure the message broker service to start when the system
boots:</para>
<screen><prompt>#</prompt> <userinput>chkconfig rabbitmq-server on</userinput></screen>
</step>
</procedure>
<para>Congratulations, now you are ready to install OpenStack
services!</para>
</section>