mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix typo doesnt -> doesn't
This commit is contained in:
parent
58d46a7e98
commit
6db9724ec7
5 changed files with 14 additions and 14 deletions
|
@ -1112,7 +1112,7 @@ Changes:
|
|||
- **PR** `#25326`_: (*rallytime*) Back-port `#20972`_ to 2015.5
|
||||
@ *2015-07-10T18:49:44Z*
|
||||
|
||||
- **ISSUE** `#19288`_: (*oba11*) AssociatePublicIpAddress doesnt work with salt-cloud 2014.7.0
|
||||
- **ISSUE** `#19288`_: (*oba11*) AssociatePublicIpAddress doesn't work with salt-cloud 2014.7.0
|
||||
| refs: `#20972`_ `#25326`_
|
||||
- **PR** `#20972`_: (*JohannesEbke*) Fix interface cleanup when using AssociatePublicIpAddress in `#19288`_
|
||||
| refs: `#25326`_
|
||||
|
|
|
@ -1110,7 +1110,7 @@ Changes:
|
|||
- **PR** `#25326`_: (*rallytime*) Back-port `#20972`_ to 2015.5
|
||||
@ *2015-07-10T18:49:44Z*
|
||||
|
||||
- **ISSUE** `#19288`_: (*oba11*) AssociatePublicIpAddress doesnt work with salt-cloud 2014.7.0
|
||||
- **ISSUE** `#19288`_: (*oba11*) AssociatePublicIpAddress doesn't work with salt-cloud 2014.7.0
|
||||
| refs: `#20972`_ `#25326`_
|
||||
- **PR** `#20972`_: (*JohannesEbke*) Fix interface cleanup when using AssociatePublicIpAddress in `#19288`_
|
||||
| refs: `#25326`_
|
||||
|
|
|
@ -219,7 +219,7 @@ container-by-container basis, for instance using the ``nic_opts`` argument to
|
|||
.. warning::
|
||||
|
||||
The ``ipv4``, ``ipv6``, ``gateway``, and ``link`` (bridge) settings in
|
||||
network profiles / nic_opts will only work if the container doesnt redefine
|
||||
network profiles / nic_opts will only work if the container doesn't redefine
|
||||
the network configuration (for example in
|
||||
``/etc/sysconfig/network-scripts/ifcfg-<interface_name>`` on RHEL/CentOS,
|
||||
or ``/etc/network/interfaces`` on Debian/Ubuntu/etc.). Use these with
|
||||
|
|
|
@ -667,7 +667,7 @@ def get_network_profile(name=None, **kwargs):
|
|||
.. warning::
|
||||
|
||||
The ``ipv4``, ``ipv6``, ``gateway``, and ``link`` (bridge) settings in
|
||||
network profiles will only work if the container doesnt redefine the
|
||||
network profiles will only work if the container doesn't redefine the
|
||||
network configuration (for example in
|
||||
``/etc/sysconfig/network-scripts/ifcfg-<interface_name>`` on
|
||||
RHEL/CentOS, or ``/etc/network/interfaces`` on Debian/Ubuntu/etc.)
|
||||
|
|
|
@ -198,7 +198,7 @@ def create_node(hostname, username, password, name, address):
|
|||
ret['result'] = True
|
||||
ret['comment'] = 'A node by this name currently exists. No change made.'
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
response = __salt__['bigip.create_node'](hostname, username, password, name, address)
|
||||
|
||||
|
@ -685,7 +685,7 @@ def create_pool(hostname, username, password, name, members=None,
|
|||
ret['result'] = True
|
||||
ret['comment'] = 'A pool by this name currently exists. No change made.'
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
response = __salt__['bigip.create_pool'](hostname=hostname,
|
||||
|
@ -901,7 +901,7 @@ def manage_pool(hostname, username, password, name,
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
new = __salt__['bigip.create_pool'](hostname=hostname,
|
||||
|
@ -1121,7 +1121,7 @@ def modify_pool(hostname, username, password, name,
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
ret['comment'] = 'A pool with this name was not found.'
|
||||
# else something else was returned
|
||||
|
@ -2567,7 +2567,7 @@ def create_monitor(hostname, username, password, monitor_type, name, **kwargs):
|
|||
ret['result'] = True
|
||||
ret['comment'] = 'A monitor by this name currently exists. No change made.'
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
response = __salt__['bigip.create_monitor'](hostname, username, password, monitor_type, name, **kwargs)
|
||||
|
@ -2642,7 +2642,7 @@ def manage_monitor(hostname, username, password, monitor_type, name, **kwargs):
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
response = __salt__['bigip.create_monitor'](hostname, username, password, monitor_type, name, **kwargs)
|
||||
|
@ -2717,7 +2717,7 @@ def modify_monitor(hostname, username, password, monitor_type, name, **kwargs):
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
ret['comment'] = 'A Monitor with this name was not found.'
|
||||
# else something else was returned
|
||||
|
@ -2864,7 +2864,7 @@ def create_profile(hostname, username, password, profile_type, name, **kwargs):
|
|||
ret['result'] = True
|
||||
ret['comment'] = 'A profile by this name currently exists. No change made.'
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
response = __salt__['bigip.create_profile'](hostname, username, password, profile_type, name, **kwargs)
|
||||
|
@ -2940,7 +2940,7 @@ def manage_profile(hostname, username, password, profile_type, name, **kwargs):
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
|
||||
response = __salt__['bigip.create_profile'](hostname, username, password, profile_type, name, **kwargs)
|
||||
|
@ -3015,7 +3015,7 @@ def modify_profile(hostname, username, password, profile_type, name, **kwargs):
|
|||
else:
|
||||
ret = _load_result(modified, ret)
|
||||
|
||||
# if it doesnt exist
|
||||
# if it doesn't exist
|
||||
elif existing['code'] == 404:
|
||||
ret['comment'] = 'A Profile with this name was not found.'
|
||||
# else something else was returned
|
||||
|
|
Loading…
Add table
Reference in a new issue