1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- =======
- FreeBSD
- =======
- Installation
- ============
- Salt is available in the FreeBSD ports tree at `sysutils/py-salt
- <https://www.freshports.org/sysutils/py-salt/>`_.
- FreeBSD binary repo
- ===================
- .. code-block:: bash
- pkg install py27-salt
- FreeBSD ports
- =============
- By default salt is packaged using python 2.7, but if you build your own packages from FreeBSD ports either by hand or with poudriere you can instead package it with your choice of python. Add a line to /etc/make.conf to choose your python flavour:
- .. code-block:: text
- echo "DEFAULT_VERSIONS+= python=3.6" >> /etc/make.conf
- Then build the port and install:
- .. code-block:: bash
- cd /usr/ports/sysutils/py-salt
- make install
- Post-installation tasks
- =======================
- **Master**
- Copy the sample configuration file:
- .. code-block:: bash
- cp /usr/local/etc/salt/master.sample /usr/local/etc/salt/master
- **rc.conf**
- Activate the Salt Master in ``/etc/rc.conf``:
- .. code-block:: bash
- sysrc salt_master_enable="YES"
- **Start the Master**
- Start the Salt Master as follows:
- .. code-block:: bash
- service salt_master start
- **Minion**
- Copy the sample configuration file:
- .. code-block:: bash
- cp /usr/local/etc/salt/minion.sample /usr/local/etc/salt/minion
- **rc.conf**
- Activate the Salt Minion in ``/etc/rc.conf``:
- .. code-block:: bash
- sysrc salt_minion_enable="YES"
- **Start the Minion**
- Start the Salt Minion as follows:
- .. code-block:: bash
- service salt_minion start
- Now go to the :ref:`Configuring Salt<configuring-salt>` page.
|