windows: Various small documentation fixes (#23138)

This commit is contained in:
Dag Wieers 2017-05-09 03:03:56 +02:00 committed by Matt Davis
parent 5ab97b30cd
commit b58cf0d23a
6 changed files with 20 additions and 19 deletions

View file

@ -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
'''