Merge branch '2017.7' into '2018.3'

Conflicts:
  - salt/modules/win_system.py
This commit is contained in:
rallytime 2018-09-24 16:54:43 -04:00
commit d9ed59ba36
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19
4 changed files with 18 additions and 2 deletions

View file

@ -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.

View file

@ -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

View file

@ -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.

View file

@ -3,6 +3,8 @@
Managing software RAID with mdadm
==================================
:depends: mdadm
A state module for creating or destroying software RAID devices.
.. code-block:: yaml