openbsd.rst 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. =======
  2. OpenBSD
  3. =======
  4. Salt was added to the OpenBSD ports tree on Aug 10th 2013.
  5. It has been tested on OpenBSD 5.5 onwards.
  6. Salt is dependent on the following additional ports. These will be installed as
  7. dependencies of the ``sysutils/salt`` port:
  8. .. code-block:: text
  9. devel/py3-progressbar
  10. net/py3-msgpack
  11. net/py3-zmq
  12. security/py3-Cryptodome
  13. security/py3-M2Crypto
  14. sysutils/py3-distro
  15. textproc/py3-MarkupSafe
  16. textproc/py3-yaml
  17. www/py3-jinja2
  18. www/py3-requests
  19. Installation
  20. ============
  21. To install Salt from the OpenBSD package repo, use the command:
  22. .. code-block:: bash
  23. pkg_add salt
  24. Post-installation tasks
  25. =======================
  26. **Master**
  27. To have the Master start automatically at boot time:
  28. .. code-block:: bash
  29. rcctl enable salt_master
  30. To start the Master:
  31. .. code-block:: bash
  32. rcctl start salt_master
  33. **Minion**
  34. To have the Minion start automatically at boot time:
  35. .. code-block:: bash
  36. rcctl enable salt_minion
  37. To start the Minion:
  38. .. code-block:: bash
  39. rcctl start salt_minion
  40. Now go to the :ref:`Configuring Salt<configuring-salt>` page.