I changed the document of win_hostname.py. (#43761)
* Host name is contrary to naming convention <!--- Your description here --> +label: docsite_pr * removed yaml separators
This commit is contained in:
parent
9c4be54625
commit
529cd19ca5
1 changed files with 7 additions and 3 deletions
|
@ -12,7 +12,6 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
|
||||||
module: win_hostname
|
module: win_hostname
|
||||||
version_added: "2.6"
|
version_added: "2.6"
|
||||||
short_description: Manages local Windows computer name.
|
short_description: Manages local Windows computer name.
|
||||||
|
@ -29,9 +28,14 @@ author:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
- name: Change the hostname to new_hostname
|
- name: Change the hostname to sample-hostname
|
||||||
win_hostname:
|
win_hostname:
|
||||||
name: new_hostname
|
name: sample-hostname
|
||||||
|
register: res
|
||||||
|
|
||||||
|
- name: Reboot
|
||||||
|
win_reboot:
|
||||||
|
when: res.reboot_required
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r'''
|
RETURN = r'''
|
||||||
|
|
Loading…
Reference in a new issue