From 27cb0c9090dd8178170d5c95293e2664321fcab8 Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Fri, 20 Sep 2024 20:07:00 +0200 Subject: [PATCH] Update example for community.general.homebrew_services (#8886) --- 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 """