win_wua state: fix function name in examples

Changes 'up_to_date' to 'uptodate'
This commit is contained in:
Morgan Willcock 2018-06-07 15:34:59 +01:00 committed by GitHub
parent 1ce7d6c38a
commit 443f4d6f21
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
'''