Merge pull request #48022 from morganwillcock/patch-1

win_wua state: fix function name in examples
This commit is contained in:
Nicole Thomas 2018-06-07 11:03:51 -04:00 committed by GitHub
commit 0a05212f60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -410,18 +410,18 @@ def uptodate(name,
# Update the system using the state defaults
update_system:
wua.up_to_date
wua.uptodate
# Update the drivers
update_drivers:
wua.up_to_date:
wua.uptodate:
- software: False
- drivers: True
- skip_reboot: False
# Apply all critical updates
update_critical:
wua.up_to_date:
wua.uptodate:
- severities:
- Critical
'''