mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix typos of parameter
This commit is contained in:
parent
45fcc7d339
commit
cb01da81c6
5 changed files with 10 additions and 10 deletions
|
@ -12,7 +12,7 @@ Multimaster
|
|||
===========
|
||||
|
||||
Salt minions can connect to multiple masters at one time by configuring the
|
||||
`master` configuration paramter as a YAML list of all the available masters. By
|
||||
`master` configuration parameter as a YAML list of all the available masters. By
|
||||
default, all masters are "hot", meaning that any master can direct commands to
|
||||
the Salt infrastructure.
|
||||
|
||||
|
@ -71,4 +71,4 @@ Syndic with Multimaster
|
|||
Syndic with Multimaster lets you connect a syndic to multiple masters to provide
|
||||
an additional layer of redundancy in a syndic configuration.
|
||||
|
||||
Syndics are covered in depth in :doc:`Salt Syndic </topics/topology/syndic>`.
|
||||
Syndics are covered in depth in :doc:`Salt Syndic </topics/topology/syndic>`.
|
||||
|
|
|
@ -151,7 +151,7 @@ def list_nodes_full(call=None):
|
|||
|
||||
items = query(method='servers')
|
||||
|
||||
# For each server, iterate on its paramters.
|
||||
# For each server, iterate on its parameters.
|
||||
ret = {}
|
||||
for node in items['servers']:
|
||||
ret[node['name']] = {}
|
||||
|
|
|
@ -2032,7 +2032,7 @@ def acl_update(consul_url=None, **kwargs):
|
|||
if 'id' in kwargs:
|
||||
data['ID'] = kwargs['id']
|
||||
else:
|
||||
ret['message'] = 'Required paramter "id" is missing.'
|
||||
ret['message'] = 'Required parameter "id" is missing.'
|
||||
ret['res'] = False
|
||||
return ret
|
||||
|
||||
|
@ -2088,7 +2088,7 @@ def acl_delete(consul_url=None, **kwargs):
|
|||
return ret
|
||||
|
||||
if 'id' not in kwargs:
|
||||
ret['message'] = 'Required paramter "id" is missing.'
|
||||
ret['message'] = 'Required parameter "id" is missing.'
|
||||
ret['res'] = False
|
||||
return ret
|
||||
|
||||
|
@ -2135,7 +2135,7 @@ def acl_info(consul_url=None, **kwargs):
|
|||
return ret
|
||||
|
||||
if 'id' not in kwargs:
|
||||
ret['message'] = 'Required paramter "id" is missing.'
|
||||
ret['message'] = 'Required parameter "id" is missing.'
|
||||
ret['res'] = False
|
||||
return ret
|
||||
|
||||
|
@ -2174,7 +2174,7 @@ def acl_clone(consul_url=None, **kwargs):
|
|||
return ret
|
||||
|
||||
if 'id' not in kwargs:
|
||||
ret['message'] = 'Required paramter "id" is missing.'
|
||||
ret['message'] = 'Required parameter "id" is missing.'
|
||||
ret['res'] = False
|
||||
return ret
|
||||
|
||||
|
@ -2219,7 +2219,7 @@ def acl_list(consul_url=None, **kwargs):
|
|||
return ret
|
||||
|
||||
if 'id' not in kwargs:
|
||||
ret['message'] = 'Required paramter "id" is missing.'
|
||||
ret['message'] = 'Required parameter "id" is missing.'
|
||||
ret['res'] = False
|
||||
return ret
|
||||
|
||||
|
|
|
@ -244,7 +244,7 @@ def post_message(user=None,
|
|||
raise SaltInvocationError('Pushover user key is unavailable.')
|
||||
|
||||
if not message:
|
||||
raise SaltInvocationError('Required paramter "message" is missing.')
|
||||
raise SaltInvocationError('Required parameter "message" is missing.')
|
||||
|
||||
user_validate = _validate_user(user, device, token)
|
||||
if not user_validate['result']:
|
||||
|
|
|
@ -52,7 +52,7 @@ base url to use for accessing S3.
|
|||
The ``s3_cache_expire`` parameter defaults to 30s. It specifies expiration
|
||||
time of S3 metadata cache file.
|
||||
|
||||
The ``s3_sync_on_update`` paramater defaults to True. It specifies if cache
|
||||
The ``s3_sync_on_update`` parameter defaults to True. It specifies if cache
|
||||
is synced on update rather than jit.
|
||||
|
||||
This pillar can operate in two modes, single environment per bucket or multiple
|
||||
|
|
Loading…
Add table
Reference in a new issue