Update example for community.general.homebrew_services (#8886)

pull/8895/head
Florian Weber 2024-09-20 20:07:00 +02:00 committed by GitHub
parent 6af74d1ba6
commit 27cb0c9090
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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
"""