Merge pull request #36749 from jacobhammons/file-dict

Fixes the file_dict cli examples to reference the correct function
This commit is contained in:
Mike Place 2016-10-04 13:07:13 +09:00 committed by GitHub
commit 89f9fc8c0d

View file

@ -2021,9 +2021,9 @@ def file_dict(*packages):
.. code-block:: bash
salt '*' pkg.file_list httpd
salt '*' pkg.file_list httpd postfix
salt '*' pkg.file_list
salt '*' pkg.file_dict httpd
salt '*' pkg.file_dict httpd postfix
salt '*' pkg.file_dict
'''
return __salt__['lowpkg.file_dict'](*packages)