mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix spelling mistake of overridden
Signed-off-by: Benjamin Drung <benjamin.drung@cloud.ionos.com>
This commit is contained in:
parent
6820518982
commit
249955e216
4 changed files with 6 additions and 6 deletions
|
@ -530,7 +530,7 @@ Module Changes
|
|||
shared between inet and inet6 blocks. The options ``enable_ipv4`` and
|
||||
``enabled_ipv6`` will now fully remove relevant inet/inet6 blocks. Overriding
|
||||
options by prefixing them with 'ipvX' will now work with most options (i.e.
|
||||
``dns`` can be overriden by ``ipv4dns`` or ``ipv6dns``). The ``proto`` option
|
||||
``dns`` can be overridden by ``ipv4dns`` or ``ipv6dns``). The ``proto`` option
|
||||
is now required.
|
||||
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ configuration: Pillar
|
|||
|
||||
.. code-block:: none
|
||||
|
||||
# the following defaults can be overrided
|
||||
# the following defaults can be overridden
|
||||
highstate_doc.config:
|
||||
|
||||
# list of regex of state names to ignore in `highstate_doc.proccess_lowstates`
|
||||
|
|
|
@ -540,7 +540,7 @@ def session_mm_secondary_minion_config(
|
|||
):
|
||||
"""
|
||||
This fixture will return the session salt minion configuration options after being
|
||||
overrided with any options passed from ``session_secondary_minion_config_overrides``
|
||||
overridden with any options passed from ``session_secondary_minion_config_overrides``
|
||||
"""
|
||||
return apply_minion_config(
|
||||
session_mm_secondary_minion_default_options,
|
||||
|
@ -678,7 +678,7 @@ def session_mm_minion_config(
|
|||
):
|
||||
"""
|
||||
This fixture will return the session salt minion configuration options after being
|
||||
overrided with any options passed from ``session_minion_config_overrides``
|
||||
overridden with any options passed from ``session_minion_config_overrides``
|
||||
"""
|
||||
return apply_minion_config(
|
||||
session_mm_minion_default_options,
|
||||
|
|
|
@ -73,7 +73,7 @@ class EngineSlackTestCase(TestCase, LoaderModuleMockMixin):
|
|||
|
||||
self.assertEqual(target_commandline, _expected)
|
||||
|
||||
# Check pillar is overrided
|
||||
# Check pillar is overridden
|
||||
_expected = (
|
||||
True,
|
||||
{"tgt_type": "glob", "target": "*"},
|
||||
|
@ -86,7 +86,7 @@ class EngineSlackTestCase(TestCase, LoaderModuleMockMixin):
|
|||
|
||||
self.assertEqual(target_commandline, _expected)
|
||||
|
||||
# Check target is overrided
|
||||
# Check target is overridden
|
||||
_expected = (
|
||||
True,
|
||||
{"tgt_type": "glob", "target": "localhost"},
|
||||
|
|
Loading…
Add table
Reference in a new issue