def runner(mod_name="*"): """ Return all inline documentation for runner modules CLI Example: .. code-block:: bash salt-run doc.runner """ client = salt.runner.RunnerClient(__opts__) if mod_name == "*": ret = client.get_docs() else: ret = client.get_docs(mod_name) return ret
def wheel(): ''' Return all inline documentation for wheel modules ''' client = salt.wheel.Wheel(__opts__) ret = client.get_docs() salt.output.display_output(ret, '', __opts__) return ret
def runner(): ''' Return all inline documetation for runner modules ''' client = salt.runner.RunnerClient(__opts__) ret = client.get_docs() salt.output.display_output(ret, '', __opts__) return ret
def wheel(): ''' Return all inline documentation for wheel modules CLI Example: .. code-block:: bash salt-run doc.wheel ''' client = salt.wheel.Wheel(__opts__) ret = client.get_docs() return ret
def runner(): ''' Return all inline documentation for runner modules CLI Example: .. code-block:: bash salt-run doc.runner ''' client = salt.runner.RunnerClient(__opts__) ret = client.get_docs() return ret
def wheel(): """ Return all inline documentation for wheel modules CLI Example: .. code-block:: bash salt-run doc.wheel """ client = salt.wheel.Wheel(__opts__) ret = client.get_docs() salt.output.display_output(ret, "", __opts__) return ret
def runner(): """ Return all inline documentation for runner modules CLI Example: .. code-block:: bash salt-run doc.runner """ client = salt.runner.RunnerClient(__opts__) ret = client.get_docs() salt.output.display_output(ret, "", __opts__) return ret