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.
|
||||
default: Reboot initiated by Ansible
|
||||
type: str
|
||||
notes:
|
||||
- For Windows targets, use the M(win_reboot) module instead.
|
||||
author:
|
||||
- Matt Davis (@nitzmahone)
|
||||
- Sam Doran (@samdoran)
|
||||
'''
|
||||
|
||||
EXAMPLES = r'''
|
||||
# Unconditionally reboot the machine with all defaults
|
||||
- reboot:
|
||||
- name: Unconditionally reboot the machine with all defaults
|
||||
reboot:
|
||||
|
||||
# Reboot a slow machine that might have lots of updates to apply
|
||||
- reboot:
|
||||
- name: Reboot a slow machine that might have lots of updates to apply
|
||||
reboot:
|
||||
reboot_timeout: 3600
|
||||
'''
|
||||
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
default: Reboot initiated by Ansible
|
||||
notes:
|
||||
- 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:
|
||||
- Matt Davis (@nitzmahone)
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue