Update example for community.general.homebrew_services (#8886)
parent
6af74d1ba6
commit
27cb0c9090
|
@ -61,17 +61,17 @@ EXAMPLES = """
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Start the foo service (equivalent to `brew services start foo`)
|
- name: Start the foo service (equivalent to `brew services start foo`)
|
||||||
community.general.homebrew_service:
|
community.general.homebrew_services:
|
||||||
name: foo
|
name: foo
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Restart the foo service (equivalent to `brew services restart foo`)
|
- name: Restart the foo service (equivalent to `brew services restart foo`)
|
||||||
community.general.homebrew_service:
|
community.general.homebrew_services:
|
||||||
name: foo
|
name: foo
|
||||||
state: restarted
|
state: restarted
|
||||||
|
|
||||||
- name: Remove the foo service (equivalent to `brew services stop foo`)
|
- name: Remove the foo service (equivalent to `brew services stop foo`)
|
||||||
community.general.homebrew_service:
|
community.general.homebrew_services:
|
||||||
name: foo
|
name: foo
|
||||||
service_state: absent
|
service_state: absent
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue