mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 06:30:19 -07:00
windows: Various small documentation fixes (#23138)
This commit is contained in:
parent
5ab97b30cd
commit
b58cf0d23a
6 changed files with 20 additions and 19 deletions
|
@ -76,26 +76,26 @@ EXAMPLES = r'''
|
|||
format: en-AU
|
||||
copy_settings: True
|
||||
|
||||
# Set the unicode language to English Great Britain
|
||||
# Set the unicode language to English Great Britain, reboot if required
|
||||
- win_region:
|
||||
unicode_language: en-GB
|
||||
register: result
|
||||
|
||||
- action: win_reboot
|
||||
- win_reboot:
|
||||
when: result.restart_required
|
||||
|
||||
# Set the location to United States
|
||||
- win_region:
|
||||
location: 244
|
||||
|
||||
# Set format, location and unicode to English Australia and copy settings
|
||||
# Set format, location and unicode to English Australia and copy settings, reboot if required
|
||||
- win_region:
|
||||
location: 12
|
||||
format: en-AU
|
||||
unicode_language: en-AU
|
||||
register: result
|
||||
|
||||
- action: win_reboot
|
||||
- win_reboot:
|
||||
when: result.restart_required
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue