salt/doc/topics/installation/openbsd.rst
Antoine Jacoutot 6608437767 Typo.
2015-05-07 09:51:00 +02:00

63 lines
1.0 KiB
ReStructuredText

=======
OpenBSD
=======
Salt was added to the OpenBSD ports tree on Aug 10th 2013.
It has been tested on OpenBSD 5.5 onwards.
Salt is dependent on the following additional ports. These will be installed as
dependencies of the ``sysutils/salt`` port:
.. code-block:: text
/net/py-msgpack
/net/py-zmq
/security/py-M2Crypto
/security/py-crypto
/textproc/py-MarkupSafe
/textproc/py-yaml
/www/py-jinja2
/www/py-requests
Installation
============
To install Salt from the OpenBSD pkg repo, use the command:
.. code-block:: bash
pkg_add salt
Post-installation tasks
=======================
**Master**
To have the Master start automatically at boot time:
.. code-block:: bash
rcctl enable salt_master
To start the Master:
.. code-block:: bash
rcctl start salt_master
**Minion**
To have the Minion start automatically at boot time:
.. code-block:: bash
rcctl enable salt_minion
To start the Minion:
.. code-block:: bash
rcctl start salt_minion
Now go to the :doc:`Configuring Salt</ref/configuration/index>` page.