Skip to content

Commit

Permalink
Fix various spelling mistakes
Browse files Browse the repository at this point in the history
Forwarded: saltstack#58700
Signed-off-by: Benjamin Drung <benjamin.drung@cloud.ionos.com>
  • Loading branch information
bdrung committed Oct 14, 2021
1 parent 7f09d5f commit c70ac33
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doc/topics/releases/3002.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Fixed
- Removing use of undefined varilable in utils/slack.py. (#58753)
- Restored the ability to specify the amount of extents for a Logical
Volume as a percentage. (#58759)
- Ensuring that the version check function is run a second time in all the user related functions incase the user being managed is the connection user and the password has been updated. (#58773)
- Ensuring that the version check function is run a second time in all the user related functions in case the user being managed is the connection user and the password has been updated. (#58773)
- Allow bytes in gpg renderer (#58794)
- Fix issue where win_wua module fails to load when BITS is set to Manual (#58848)
- Ensure that elasticsearch.index_exists is available before loading the elasticsearch returner. (#58851)
Expand Down
6 changes: 3 additions & 3 deletions doc/topics/releases/3002.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Deprecated
Changed
-------

- Allow to specify a custom port for Proxmox connection (#50620)
- Allow specifying a custom port for Proxmox connection (#50620)
- Changed the lvm.lv_present state to accept a resizefs switch. So, when
the logical volume is resized, the filesystem will be resized too. (#55265)
- Change the ``enable_fqdns_grains`` setting to default to ``False`` on proxy minions
Expand Down Expand Up @@ -195,13 +195,13 @@ Added
- Add output filter to saltcheck to only display test failures (#57788)
- Added an execution module for running idem exec modules
- Added a state module for running idem states (#57969)
- Added the ability for states to return `sub_state_run's` results frome external state engines (#57993)
- Added the ability for states to return `sub_state_run's` results from external state engines (#57993)
- Added salt-cloud support for Linode APIv4 via the ``api_version`` provider configuration parameter. (#58093)
- Added support to manage services in Slackware Linux. (#58206)
- Added list_sources to chocolatey module to have an overview of the repositories present on the minions.
Added source_added to chocolatey state in order to add repositories to chocolatey. (#58588)
- Adding tests for changes to virtual function for netmiko module. Adding tests for netmiko proxy minion module. (#58609)
- Added features config option for feature flags. Added a feature flag
`enable_slsvars_fixes` to enable fixes to tpldir, tplfile and sls_path.
This flag will be depricated in the Phosphorus release when this functionality
This flag will be deprecated in the Phosphorus release when this functionality
becomes the default. (#58652)
2 changes: 1 addition & 1 deletion salt/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,7 @@ def get_cli_event_returns(
timeout=timeout,
tgt=tgt,
tgt_type=tgt_type,
# (gtmanfred) expect_minions is popped here incase it is passed from a client
# (gtmanfred) expect_minions is popped here in case it is passed from a client
# call. If this is not popped, then it would be passed twice to
# get_iter_returns.
expect_minions=(
Expand Down
2 changes: 1 addition & 1 deletion salt/modules/ceph.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def zap(target=None, **kwargs):
The cluster UUID. Defaults to value found in ceph config file.
"""
if target is not None:
log.warning("Depricated use of function, use kwargs")
log.warning("Deprecated use of function, use kwargs")
target = kwargs.get("dev", target)
kwargs["dev"] = target
return ceph_cfg.zap(**kwargs)
Expand Down
2 changes: 1 addition & 1 deletion salt/modules/dockermod.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def _get_client(timeout=NOTSET, **kwargs):
client_kwargs["base_url"] = os.environ.get("DOCKER_HOST")

if "version" not in client_kwargs:
# Let docker-py auto detect docker version incase
# Let docker-py auto detect docker version in case
# it's not defined by user.
client_kwargs["version"] = "auto"

Expand Down
2 changes: 1 addition & 1 deletion salt/states/boto_apigateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def present(
lambda_funcname_format
Please review the earlier example for the usage. The only substituable keys in the funcname
format are {stage}, {api}, {resource}, {method}.
Any other keys or positional subsitution parameters will be flagged as an invalid input.
Any other keys or positional substitution parameters will be flagged as an invalid input.
authorization_type
This field can be either 'NONE', or 'AWS_IAM'. This will be applied to all methods in the given
Expand Down
2 changes: 1 addition & 1 deletion salt/states/boto_sns.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def present(name, subscriptions=None, region=None, key=None, keyid=None, profile

if subscription not in _subscriptions:
# Ensure the endpoint is set back to its original value,
# incase we starred out a password
# in case we starred out a password
subscription["endpoint"] = _endpoint

if __opts__["test"]:
Expand Down

0 comments on commit c70ac33

Please sign in to comment.