Files
states/windows/update.sls
2018-05-25 12:09:09 +00:00

19 lines
351 B
Plaintext

{% if grains['kernel'] == 'Windows' %}
# Update the system using the state defaults
update_system:
wua.up_to_date
# Update the drivers
update_drivers:
wua.up_to_date:
- software: False
- drivers: True
- skip_reboot: False
# Apply all critical updates
update_critical:
wua.up_to_date:
- severities:
- Critical
{% endif %}