mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Cross-reference win_reboot and reboot (#44784)
This commit is contained in:
parent
113bdec2ed
commit
7d51b2a6d2
2 changed files with 7 additions and 4 deletions
|
@ -53,17 +53,19 @@ options:
|
||||||
- Message to display to users before reboot.
|
- Message to display to users before reboot.
|
||||||
default: Reboot initiated by Ansible
|
default: Reboot initiated by Ansible
|
||||||
type: str
|
type: str
|
||||||
|
notes:
|
||||||
|
- For Windows targets, use the M(win_reboot) module instead.
|
||||||
author:
|
author:
|
||||||
- Matt Davis (@nitzmahone)
|
- Matt Davis (@nitzmahone)
|
||||||
- Sam Doran (@samdoran)
|
- Sam Doran (@samdoran)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
# Unconditionally reboot the machine with all defaults
|
- name: Unconditionally reboot the machine with all defaults
|
||||||
- reboot:
|
reboot:
|
||||||
|
|
||||||
# Reboot a slow machine that might have lots of updates to apply
|
- name: Reboot a slow machine that might have lots of updates to apply
|
||||||
- reboot:
|
reboot:
|
||||||
reboot_timeout: 3600
|
reboot_timeout: 3600
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
|
@ -60,6 +60,7 @@ options:
|
||||||
default: Reboot initiated by Ansible
|
default: Reboot initiated by Ansible
|
||||||
notes:
|
notes:
|
||||||
- If a shutdown was already scheduled on the system, C(win_reboot) will abort the scheduled shutdown and enforce its own shutdown.
|
- If a shutdown was already scheduled on the system, C(win_reboot) will abort the scheduled shutdown and enforce its own shutdown.
|
||||||
|
- For non-Windows targets, use the M(reboot) module instead.
|
||||||
author:
|
author:
|
||||||
- Matt Davis (@nitzmahone)
|
- Matt Davis (@nitzmahone)
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue