Merge pull request #32343 from Ferbla/2015.8

Fixed win_wua example documentation
This commit is contained in:
Mike Place 2016-04-05 10:14:36 -06:00
commit bb033c238d

View File

@ -315,18 +315,18 @@ def list_update(name=None,
# Recommended Usage using GUID without braces # Recommended Usage using GUID without braces
# Use this to find the status of a specific update # Use this to find the status of a specific update
salt '*' wua.list_update 12345678-abcd-1234-abcd-1234567890ab salt '*' win_wua.list_update 12345678-abcd-1234-abcd-1234567890ab
# Use the following if you don't know the GUID: # Use the following if you don't know the GUID:
# Using a KB number (could possibly return multiple results) # Using a KB number (could possibly return multiple results)
# Not all updates have an associated KB # Not all updates have an associated KB
salt '*' wua.list_update KB3030298 salt '*' win_wua.list_update KB3030298
# Using part or all of the name of the update # Using part or all of the name of the update
# Could possibly return multiple results # Could possibly return multiple results
# Not all updates have an associated KB # Not all updates have an associated KB
salt '*' wua.list_update 'Microsoft Camera Codec Pack' salt '*' win_wua.list_update 'Microsoft Camera Codec Pack'
""" """
if name is None: if name is None:
@ -492,22 +492,22 @@ def list_updates(software=True,
.. code-block:: bash .. code-block:: bash
# Normal Usage (list all software updates) # Normal Usage (list all software updates)
salt '*' wua.list_updates salt '*' win_wua.list_updates
# List all updates with categories of Critical Updates and Drivers # List all updates with categories of Critical Updates and Drivers
salt '*' wua.list_updates categories=['Critical Updates','Drivers'] salt '*' win_wua.list_updates categories=['Critical Updates','Drivers']
# List all Critical Security Updates # List all Critical Security Updates
salt '*' wua.list_updates categories=['Security Updates'] severities=['Critical'] salt '*' win_wua.list_updates categories=['Security Updates'] severities=['Critical']
# List all updates with a severity of Critical # List all updates with a severity of Critical
salt '*' wua.list_updates severities=['Critical'] salt '*' win_wua.list_updates severities=['Critical']
# A summary of all available updates # A summary of all available updates
salt '*' wua.list_updates summary=True salt '*' win_wua.list_updates summary=True
# A summary of all Feature Packs and Windows 8.1 Updates # A summary of all Feature Packs and Windows 8.1 Updates
salt '*' wua.list_updates categories=['Feature Packs','Windows 8.1'] summary=True salt '*' win_wua.list_updates categories=['Feature Packs','Windows 8.1'] summary=True
""" """
# Get the list of updates # Get the list of updates