Merge pull request #676 from jfindlay/stable_insecurity

instructions for installing the latest stable release as a one-liner
This commit is contained in:
Justin Findlay 2015-10-23 12:11:54 -06:00
commit de72e6f72d

View file

@ -27,7 +27,7 @@ Bootstrap
---------
If you're looking for the *one-liner* to install salt, please scroll to the bottom and use the
instructions for `Installing via an Insecure One-Liner`_
instructions for `Installing via an Insecure One-Liner`_.
Examples
@ -132,6 +132,10 @@ To install a specific branch from a git fork:
sudo sh install_salt.sh -g https://github.com/myuser/salt.git git mybranch
Any of the example above which use two-lines can be made to run in a single-line
configuration with minor modifications, see `Installing via an Insecure One-Liner`_.
Installing via an Insecure One-Liner
------------------------------------
@ -145,16 +149,24 @@ The following examples illustrate how to install Salt via a one-liner.
Examples
~~~~~~~~
Installing the latest stable release of Salt (default):
.. code:: console
curl -L https://bootstrap.saltstack.com | sudo sh -s -- stable
or
.. code:: console
curl -L https://bootstrap.saltstack.com | sudo sh -s
Installing the latest develop branch of Salt:
.. code:: console
curl -L https://bootstrap.saltstack.com | sudo sh -s -- git develop
Any of the example above which use two-lines can be made to run in a single-line
configuration with minor modifications.
Adding support for other operating systems
------------------------------------------