mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -56,32 +56,32 @@ options:
|
|||
|
||||
EXAMPLES = '''
|
||||
- name: Start svc dnscache, if not running
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: started
|
||||
|
||||
- name: Stop svc dnscache, if running
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: stopped
|
||||
|
||||
- name: Kill svc dnscache, in all cases
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: killed
|
||||
|
||||
- name: Restart svc dnscache, in all cases
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: restarted
|
||||
|
||||
- name: Reload svc dnscache, in all cases
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: reloaded
|
||||
|
||||
- name: Using alternative svc directory location
|
||||
svc:
|
||||
community.general.svc:
|
||||
name: dnscache
|
||||
state: reloaded
|
||||
service_dir: /var/service
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue