From 932c256771d8949cf9fd22dad848fb2e72994514 Mon Sep 17 00:00:00 2001 From: Olivier Mehani Date: Tue, 17 Sep 2024 21:06:20 +1000 Subject: [PATCH] Fix typo in sate.sls_exists doctstrings (module & ssh wrapper) Signed-off-by: Olivier Mehani --- salt/client/ssh/wrapper/state.py | 2 +- salt/modules/state.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/salt/client/ssh/wrapper/state.py b/salt/client/ssh/wrapper/state.py index 22c0cb53c768..79667a4dedea 100644 --- a/salt/client/ssh/wrapper/state.py +++ b/salt/client/ssh/wrapper/state.py @@ -1115,7 +1115,7 @@ def show_low_sls(mods, saltenv="base", test=None, **kwargs): def sls_exists(mods, test=None, queue=None, **kwargs): """ - Tests for the existence the of a specific SLS or list of SLS files on the + Tests for the existence of a specific SLS or list of SLS files on the master. Similar to :py:func:`state.show_sls `, rather than returning state details, returns True or False. The default environment is ``base``, use ``saltenv`` to specify a different environment. diff --git a/salt/modules/state.py b/salt/modules/state.py index 6440d347ffe0..d35273a5270d 100644 --- a/salt/modules/state.py +++ b/salt/modules/state.py @@ -2126,7 +2126,7 @@ def show_sls(mods, test=None, queue=None, **kwargs): def sls_exists(mods, test=None, queue=None, **kwargs): """ - Tests for the existence the of a specific SLS or list of SLS files on the + Tests for the existence of a specific SLS or list of SLS files on the master. Similar to :py:func:`state.show_sls `, rather than returning state details, returns True or False. The default environment is ``base``, use ``saltenv`` to specify a different environment.