From c1dd74aa69031213f16b56fe4f9e5a5fb71429ef Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Mon, 26 Aug 2024 18:00:18 +0100 Subject: [PATCH] docs(modules/system): fix `system.get_computer_name` CLI example --- salt/modules/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/modules/system.py b/salt/modules/system.py index bcdce7a434c..c2bd8f8da78 100644 --- a/salt/modules/system.py +++ b/salt/modules/system.py @@ -633,7 +633,7 @@ def get_computer_name(): .. code-block:: bash - salt '*' network.get_hostname + salt '*' system.get_computer_name """ return __salt__["network.get_hostname"]()