mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
@@ -49,32 +49,32 @@ options:
|
||||
|
||||
EXAMPLES = r'''
|
||||
- name: Start sv dnscache, if not running
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: started
|
||||
|
||||
- name: Stop sv dnscache, if running
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: stopped
|
||||
|
||||
- name: Kill sv dnscache, in all cases
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: killed
|
||||
|
||||
- name: Restart sv dnscache, in all cases
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: restarted
|
||||
|
||||
- name: Reload sv dnscache, in all cases
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: reloaded
|
||||
|
||||
- name: Use alternative sv directory location
|
||||
runit:
|
||||
community.general.runit:
|
||||
name: dnscache
|
||||
state: reloaded
|
||||
service_dir: /run/service
|
||||
|
||||
Reference in New Issue
Block a user