2015.5 -> 2015.5.0

This commit is contained in:
Justin Findlay 2015-09-18 16:12:57 -06:00
parent 59a07cae68
commit 967e3bb72a
5 changed files with 6 additions and 6 deletions

View File

@ -113,7 +113,7 @@ class SSHClient(object):
''' '''
Execute a salt-ssh call synchronously. Execute a salt-ssh call synchronously.
.. versionaddedd:: 2015.5.0 .. versionadded:: 2015.5.0
WARNING: Eauth is **NOT** respected WARNING: Eauth is **NOT** respected

View File

@ -23,7 +23,7 @@ def cmd(
Execute a single command via the salt-ssh subsystem and return all Execute a single command via the salt-ssh subsystem and return all
routines at once routines at once
.. versionaddedd:: 2015.2 .. versionadded:: 2015.5.0
A wrapper around the :py:meth:`SSHClient.cmd A wrapper around the :py:meth:`SSHClient.cmd
<salt.client.ssh.client.SSHClient.cmd>` method. <salt.client.ssh.client.SSHClient.cmd>` method.

View File

@ -476,7 +476,7 @@ def present(name, bare=True, user=None, force=False, shared=None):
shared shared
Specify the permission for sharing, see git-init for details (Default: None) Specify the permission for sharing, see git-init for details (Default: None)
.. versionadded:: 2015.5 .. versionadded:: 2015.5.0
''' '''
name = os.path.expanduser(name) name = os.path.expanduser(name)
ret = {'name': name, 'result': True, 'comment': '', 'changes': {}} ret = {'name': name, 'result': True, 'comment': '', 'changes': {}}

View File

@ -4,7 +4,7 @@ HTTP monitoring states
Perform an HTTP query and statefully return the result Perform an HTTP query and statefully return the result
.. versionaddedd:: 2015.2 .. versionadded:: 2015.5.0
''' '''
from __future__ import absolute_import from __future__ import absolute_import
@ -21,7 +21,7 @@ def query(name, match=None, match_type='string', status=None, **kwargs):
''' '''
Perform an HTTP query and statefully return the result Perform an HTTP query and statefully return the result
.. versionaddedd:: 2015.2 .. versionadded:: 2015.5.0
''' '''
# Monitoring state, but changes may be made over HTTP # Monitoring state, but changes may be made over HTTP
ret = {'name': name, ret = {'name': name,

View File

@ -3,7 +3,7 @@
Utils for making various web calls. Primarily designed for REST, SOAP, webhooks Utils for making various web calls. Primarily designed for REST, SOAP, webhooks
and the like, but also useful for basic HTTP testing. and the like, but also useful for basic HTTP testing.
.. versionaddedd:: 2015.2 .. versionadded:: 2015.5.0
''' '''
from __future__ import absolute_import from __future__ import absolute_import