mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Merge pull request #3344 from ydavid365/patch-4
added simpler rhel5/6 examples for starting salt / loading at boot.
This commit is contained in:
commit
7ff010e75a
@ -7,7 +7,7 @@ repositories and `EPEL`_. It is installable using yum. Fedora will have more
|
||||
up to date versions of Salt than other members of the Red Hat family, which
|
||||
makes it a great place to help improve Salt!
|
||||
|
||||
.. admonition:: CentOS / RHEL 5
|
||||
.. admonition:: CentOS / RHEL 5 / RHEL 6
|
||||
|
||||
Salt and all dependencies have been *finally* accepted into the yum
|
||||
reposities for EPEL5 and EPEL6. Currently, the latest is in epel-testing
|
||||
@ -52,12 +52,25 @@ To have the Master start automatically at boot time:
|
||||
|
||||
systemctl enable salt-master.service
|
||||
|
||||
or
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
chkconfig salt-master on
|
||||
|
||||
|
||||
To start the Master:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
systemctl start salt-master.service
|
||||
|
||||
or
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
service salt-master start
|
||||
|
||||
**Minion**
|
||||
|
||||
To have the Minion start automatically at boot time:
|
||||
@ -66,11 +79,23 @@ To have the Minion start automatically at boot time:
|
||||
|
||||
systemctl enable salt-minion.service
|
||||
|
||||
or
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
chkconfig salt-minion on
|
||||
|
||||
To start the Minion:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
systemctl start salt-minion.service
|
||||
|
||||
or
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
service salt-minion start
|
||||
|
||||
Now go to the :doc:`Configuring Salt</topics/configuration>` page.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user