示例#1
0
def cmd(
        tgt,
        fun,
        arg=(),
        timeout=None,
        expr_form='glob',
        kwarg=None):
    '''
    Execute a single command via the salt-ssh subsystem and return all
    routines at once

    .. versionadded:: 2015.5.0

    A wrapper around the :py:meth:`SSHClient.cmd
    <salt.client.ssh.client.SSHClient.cmd>` method.
    '''

    client = salt.client.ssh.client.SSHClient(mopts=__opts__)
    return client.cmd(
            tgt,
            fun,
            arg,
            timeout,
            expr_form,
            kwarg)
示例#2
0
文件: ssh.py 项目: mjura/salt-1
def cmd(
        tgt,
        fun,
        arg=(),
        timeout=None,
        expr_form='glob',
        kwarg=None):
    '''
    Execute a single command via the salt-ssh subsystem and return all
    routines at once

    .. versionaddedd:: 2015.2

    A wrapper around the :py:meth:`SSHClient.cmd
    <salt.client.ssh.client.SSHClient.cmd>` method.
    '''

    client = salt.client.ssh.client.SSHClient(mopts=__opts__)
    return client.cmd(
            tgt,
            fun,
            arg,
            timeout,
            expr_form,
            kwarg)
示例#3
0
def cmd(tgt,
        fun,
        arg=(),
        timeout=None,
        tgt_type='glob',
        kwarg=None,
        expr_form=None):
    '''
    .. versionadded:: 2015.5.0
    .. versionchanged:: 2017.7.0
        The ``expr_form`` argument has been renamed to ``tgt_type``, earlier
        releases must use ``expr_form``.

    Execute a single command via the salt-ssh subsystem and return all
    routines at once

    A wrapper around the :py:meth:`SSHClient.cmd
    <salt.client.ssh.client.SSHClient.cmd>` method.
    '''
    # remember to remove the expr_form argument from this function when
    # performing the cleanup on this deprecation.
    if expr_form is not None:
        salt.utils.warn_until(
            'Fluorine',
            'the target type should be passed using the \'tgt_type\' '
            'argument instead of \'expr_form\'. Support for using '
            '\'expr_form\' will be removed in Salt Fluorine.')
        tgt_type = expr_form

    client = salt.client.ssh.client.SSHClient(mopts=__opts__)
    return client.cmd(tgt, fun, arg, timeout, tgt_type, kwarg)
示例#4
0
def cmd(tgt, fun, arg=(), timeout=None, tgt_type='glob', kwarg=None):
    '''
    .. versionadded:: 2015.5.0
    .. versionchanged:: 2017.7.0
        The ``expr_form`` argument has been renamed to ``tgt_type``, earlier
        releases must use ``expr_form``.

    Execute a single command via the salt-ssh subsystem and return all
    routines at once

    A wrapper around the :py:meth:`SSHClient.cmd
    <salt.client.ssh.client.SSHClient.cmd>` method.
    '''
    client = salt.client.ssh.client.SSHClient(mopts=__opts__)
    return client.cmd(tgt, fun, arg, timeout, tgt_type, kwarg)
示例#5
0
文件: ssh.py 项目: bryson/salt
def cmd(tgt,
        fun,
        arg=(),
        timeout=None,
        tgt_type='glob',
        kwarg=None,
        expr_form=None):
    '''
    .. versionadded:: 2015.5.0
    .. versionchanged:: Nitrogen
        The ``expr_form`` argument has been renamed to ``tgt_type``, earlier
        releases must use ``expr_form``.

    Execute a single command via the salt-ssh subsystem and return all
    routines at once

    A wrapper around the :py:meth:`SSHClient.cmd
    <salt.client.ssh.client.SSHClient.cmd>` method.
    '''
    # remember to remove the expr_form argument from this function when
    # performing the cleanup on this deprecation.
    if expr_form is not None:
        salt.utils.warn_until(
            'Fluorine',
            'the target type should be passed using the \'tgt_type\' '
            'argument instead of \'expr_form\'. Support for using '
            '\'expr_form\' will be removed in Salt Fluorine.'
        )
        tgt_type = expr_form

    client = salt.client.ssh.client.SSHClient(mopts=__opts__)
    return client.cmd(
            tgt,
            fun,
            arg,
            timeout,
            tgt_type,
            kwarg)