salt/doc/ref/cli/salt-call.rst

112 lines
2.8 KiB
ReStructuredText
Raw Normal View History

2011-05-23 06:58:49 +00:00
=============
``salt-call``
=============
Synopsis
========
.. code-block:: bash
2011-05-23 06:58:49 +00:00
salt-call [options]
Description
===========
2014-12-11 03:37:07 +00:00
The salt-call command is used to run module functions locally on a minion
2015-06-10 15:45:03 +00:00
instead of executing them from the master. Salt-call is used to run a
:ref:`Standalone Minion <tutorial-standalone-minion>`, and was originally
created for :ref:`troubleshooting <troubleshooting-minion-salt-call>`.
2015-06-10 15:45:03 +00:00
The Salt Master is contacted to retrieve state files and other resources
during execution unless the ``--local`` option is specified.
2015-06-10 15:45:03 +00:00
.. note::
``salt-call`` commands execute from the current user's shell
context, while ``salt`` commands execute from the system's default context.
2011-05-23 06:58:49 +00:00
Options
=======
.. program:: salt-call
.. include:: _includes/common-options.rst
2011-05-23 06:58:49 +00:00
.. option:: --hard-crash
Raise any original exception rather than exiting gracefully Default: False
2011-05-23 06:58:49 +00:00
.. option:: -g, --grains
2012-05-23 04:43:12 +00:00
Return the information generated by the Salt grains
2011-05-23 06:58:49 +00:00
.. option:: -m MODULE_DIRS, --module-dirs=MODULE_DIRS
Specify an additional directory to pull modules from. Multiple directories
can be provided by passing -m /--module-dirs multiple times.
2011-05-23 06:58:49 +00:00
.. option:: -d, --doc, --documentation
Return the documentation for the specified module or for all modules if
none are specified
.. option:: --master=MASTER
2014-12-11 03:37:07 +00:00
Specify the master to use. The minion must be authenticated with the
master. If this option is omitted, the master options from the minion
config will be used. If multi masters are set up the first listed master
that responds will be used.
2012-12-14 13:32:23 +00:00
.. option:: --return RETURNER
Set salt-call to pass the return data to one or many returner interfaces.
To use many returner interfaces specify a comma delimited list of
returners.
.. option:: --local
Run salt-call locally, as if there was no master running.
.. option:: --file-root=FILE_ROOT
Set this directory as the base file root.
.. option:: --pillar-root=PILLAR_ROOT
Set this directory as the base pillar root.
.. option:: --retcode-passthrough
Exit with the salt call retcode and not the salt binary retcode
.. option:: --metadata
Print out the execution metadata as well as the return. This will print out
the outputter data, the return code, etc.
.. option:: --id=ID
Specify the minion id to use. If this option is omitted, the id option from
the minion config will be used.
.. option:: --skip-grains
Do not load grains.
.. option:: --refresh-grains-cache
Force a refresh of the grains cache
.. include:: _includes/logging-options.rst
.. |logfile| replace:: /var/log/salt/minion
.. |loglevel| replace:: ``warning``
2013-08-10 10:41:33 +00:00
.. include:: _includes/output-options.rst
2012-05-10 22:10:39 +00:00
2012-05-10 22:10:39 +00:00
See also
========
:manpage:`salt(1)`
:manpage:`salt-master(1)`
2014-12-11 03:37:07 +00:00
:manpage:`salt-minion(1)`