Skip to content

Commit

Permalink
Addressing reviewer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kitizz committed May 12, 2024
1 parent b0a0512 commit 13198ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions plugins/modules/homebrew_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- homebrew must already be installed on the target system
short_description: Services manager for Homebrew
description:
- Manages daemons and services via Homebrew
- Manages daemons and services via Homebrew.
extends_documentation_fragment:
- community.general.attributes
options:
Expand All @@ -46,23 +46,23 @@
"""

EXAMPLES = """
# Install foo package
- community.general.homebrew:
- name: Install foo package
community.general.homebrew:
name: foo
state: present
# Start the foo service (equivalent to `brew services start foo`)
- community.general.homebrew_service:
- name: Start the foo service (equivalent to `brew services start foo`)
community.general.homebrew_service:
name: foo
state: present
# Restart the foo service (equivalent to `brew services restart foo`)
- community.general.homebrew_service:
- name: Restart the foo service (equivalent to `brew services restart foo`)
community.general.homebrew_service:
name: foo
state: restarted
# Remove the foo service (equivalent to `brew services stop foo`)
- community.general.homebrew_service:
- name: Remove the foo service (equivalent to `brew services stop foo`)
community.general.homebrew_service:
name: foo
service_state: absent
"""
Expand Down

0 comments on commit 13198ae

Please sign in to comment.