add enable_ssh documentation

This commit is contained in:
Daniel Wallace 2017-11-16 14:31:37 -07:00
parent 24541d464d
commit 38aeb7ad5f
No known key found for this signature in database
GPG key ID: 5FA5E5544F010D48
2 changed files with 21 additions and 0 deletions

View file

@ -96,6 +96,18 @@ The user to run the Salt processes
.. conf_master:: ret_port
``enable_ssh``
--------------
Default: ``False``
Tell the master to also use SaltSSH when running commands against minions.
.. code-block:: yaml
enable_ssh: True
``ret_port``
------------

View file

@ -107,6 +107,15 @@ Salt CLI.
salt myminion docker.create image=foo/bar:baz command=/path/to/command start=True
Use SaltSSH Minions like regular Master-Minions
-----------------------------------------------
The Master process can now also call SSH minions as if they were connected to
the master using ZeroMQ. By setting `enable_ssh_minions: True` in the the
master config file, the master will create a SaltSSH client process which
connects to the minion and returns the output for the `salt` commandline to use
like a regular minion. This can be used anywhere the LocalClient is used.
Comparison Operators in Package Installation
--------------------------------------------