From 57277e06616350f60cca30e9566346f172cf56dc Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 20:15:48 +0200 Subject: [PATCH] [PR #8886/27cb0c90 backport][stable-9] Update example for community.general.homebrew_services (#8890) Update example for community.general.homebrew_services (#8886) (cherry picked from commit 27cb0c9090dd8178170d5c95293e2664321fcab8) Co-authored-by: Florian Weber --- plugins/modules/homebrew_services.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/homebrew_services.py b/plugins/modules/homebrew_services.py index 2794025b29..96e81bea63 100644 --- a/plugins/modules/homebrew_services.py +++ b/plugins/modules/homebrew_services.py @@ -61,17 +61,17 @@ EXAMPLES = """ state: present - name: Start the foo service (equivalent to `brew services start foo`) - community.general.homebrew_service: + community.general.homebrew_services: name: foo state: present - name: Restart the foo service (equivalent to `brew services restart foo`) - community.general.homebrew_service: + community.general.homebrew_services: name: foo state: restarted - name: Remove the foo service (equivalent to `brew services stop foo`) - community.general.homebrew_service: + community.general.homebrew_services: name: foo service_state: absent """