1
0

openbsd.rst 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/py-futures
  10. devel/py-progressbar
  11. net/py-msgpack
  12. net/py-zmq
  13. security/py-crypto
  14. security/py-M2Crypto
  15. textproc/py-MarkupSafe
  16. textproc/py-yaml
  17. www/py-jinja2
  18. www/py-requests
  19. www/py-tornado
  20. Installation
  21. ============
  22. To install Salt from the OpenBSD pkg repo, use the command:
  23. .. code-block:: bash
  24. pkg_add salt
  25. Post-installation tasks
  26. =======================
  27. **Master**
  28. To have the Master start automatically at boot time:
  29. .. code-block:: bash
  30. rcctl enable salt_master
  31. To start the Master:
  32. .. code-block:: bash
  33. rcctl start salt_master
  34. **Minion**
  35. To have the Minion start automatically at boot time:
  36. .. code-block:: bash
  37. rcctl enable salt_minion
  38. To start the Minion:
  39. .. code-block:: bash
  40. rcctl start salt_minion
  41. Now go to the :ref:`Configuring Salt<configuring-salt>` page.