mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #49770 from rallytime/merge-2018.3
[2018.3] Merge forward from 2017.7 to 2018.3
This commit is contained in:
commit
413868329c
4 changed files with 18 additions and 2 deletions
|
@ -917,7 +917,7 @@ def owner(*paths):
|
|||
.. versionadded:: 2014.7.0
|
||||
|
||||
Return the name of the package that owns the file. Multiple file paths can
|
||||
be passed. Like :mod:`pkg.version <salt.modules.yumpkg.version`, if a
|
||||
be passed. Like :mod:`pkg.version <salt.modules.yumpkg.version>`, if a
|
||||
single path is passed, a string will be returned, and if multiple paths are
|
||||
passed, a dictionary of file/package name pairs will be returned.
|
||||
|
||||
|
|
|
@ -625,6 +625,13 @@ def apply_(mods=None, **kwargs):
|
|||
test
|
||||
Run states in test-only (dry-run) mode
|
||||
|
||||
mock
|
||||
The mock option allows for the state run to execute without actually
|
||||
calling any states. This then returns a mocked return which will show
|
||||
the requisite ordering as well as fully validate the state run.
|
||||
|
||||
.. versionadded:: 2015.8.4
|
||||
|
||||
pillar
|
||||
Custom Pillar values, passed as a dictionary of key-value pairs
|
||||
|
||||
|
@ -685,6 +692,13 @@ def apply_(mods=None, **kwargs):
|
|||
test
|
||||
Run states in test-only (dry-run) mode
|
||||
|
||||
mock
|
||||
The mock option allows for the state run to execute without actually
|
||||
calling any states. This then returns a mocked return which will show
|
||||
the requisite ordering as well as fully validate the state run.
|
||||
|
||||
.. versionadded:: 2015.8.4
|
||||
|
||||
pillar
|
||||
Custom Pillar values, passed as a dictionary of key-value pairs
|
||||
|
||||
|
|
|
@ -2905,7 +2905,7 @@ def owner(*paths):
|
|||
.. versionadded:: 2014.7.0
|
||||
|
||||
Return the name of the package that owns the file. Multiple file paths can
|
||||
be passed. Like :mod:`pkg.version <salt.modules.yumpkg.version`, if a
|
||||
be passed. Like :mod:`pkg.version <salt.modules.yumpkg.version>`, if a
|
||||
single path is passed, a string will be returned, and if multiple paths are
|
||||
passed, a dictionary of file/package name pairs will be returned.
|
||||
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
Managing software RAID with mdadm
|
||||
==================================
|
||||
|
||||
:depends: mdadm
|
||||
|
||||
A state module for creating or destroying software RAID devices.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
|
Loading…
Add table
Reference in a new issue