2015-09-17 15:23:24 +00:00
|
|
|
:orphan:
|
|
|
|
|
2014-08-12 20:53:21 +00:00
|
|
|
===========================================
|
|
|
|
Installing/Testing a Salt Release Candidate
|
|
|
|
===========================================
|
|
|
|
|
2014-08-12 21:08:02 +00:00
|
|
|
It's time for a new feature release of Salt! Follow the instructions below to
|
|
|
|
install the latest release candidate of Salt, and try :doc:`all the shiny new
|
2015-07-07 15:24:57 +00:00
|
|
|
features </topics/releases/2015.8.0>`! Be sure to report any bugs you find on
|
2014-09-24 21:12:47 +00:00
|
|
|
`Github <http://www.github.com/saltstack/salt>`_
|
2014-08-12 20:53:21 +00:00
|
|
|
|
|
|
|
Installing Using Bootstrap
|
|
|
|
==========================
|
|
|
|
|
|
|
|
The easiest way to install a release candidate of Salt is using
|
|
|
|
`Salt Bootstrap`_:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
curl -o install_salt.sh -L https://bootstrap.saltstack.com
|
2015-07-23 20:29:09 +00:00
|
|
|
sudo sh install_salt.sh git v2015.8.0rc2
|
2014-08-12 20:53:21 +00:00
|
|
|
|
|
|
|
If you want to also install a master using `Salt Bootstrap`_, use the ``-M``
|
|
|
|
flag:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
curl -o install_salt.sh -L https://bootstrap.saltstack.com
|
2015-07-23 20:29:09 +00:00
|
|
|
sudo sh install_salt.sh -M git v2015.8.0rc2
|
2014-08-12 20:53:21 +00:00
|
|
|
|
|
|
|
If you want to install only a master and not a minion using `Salt Bootstrap`_,
|
|
|
|
use the ``-M`` and ``-N`` flags:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
curl -o install_salt.sh -L https://bootstrap.saltstack.com
|
2015-07-23 20:29:09 +00:00
|
|
|
sudo sh install_salt.sh -M -N git v2015.8.0rc2
|
2014-08-12 20:53:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
Installation from Source Tarball
|
|
|
|
================================
|
|
|
|
|
|
|
|
Installing from the source tarball on PyPI is also fairly straightforward.
|
|
|
|
First, install all the dependencies for Salt as documented :ref:`in the
|
|
|
|
installation docs <_installation>`. Then install salt using the following:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2015-07-23 20:29:09 +00:00
|
|
|
curl -O https://pypi.python.org/packages/source/s/salt/salt-2015.8.0rc2.tar.gz
|
|
|
|
tar -xzvf salt-2015.8.0rc2.tar.gz
|
|
|
|
cd salt-2015.8.0rc2
|
2014-08-12 20:53:21 +00:00
|
|
|
sudo python setup.py install
|
|
|
|
|
|
|
|
|
|
|
|
.. _`saltstack/salt`: https://github.com/saltstack/salt
|
2015-04-15 19:32:48 +00:00
|
|
|
.. _`Salt Bootstrap`: https://github.com/saltstack/salt-bootstrap
|
|
|
|
|
|
|
|
Install on Windows
|
|
|
|
==================
|
|
|
|
|
2015-09-08 20:43:59 +00:00
|
|
|
Builds for Windows can be found here: https://repo.saltstack.com/windows/
|