diff options
author | Matt Clay <matt@mystile.com> | 2024-10-09 23:22:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 23:22:35 +0200 |
commit | a0495fc31497798a7a833ba7406a9729e1528dd8 (patch) | |
tree | c9ebc8e92d18e20bbb5f44d0184d00166b63b4df /test/support/windows-integration/plugins/modules/win_reboot.py | |
parent | ansible-test - Work around pylint issue on 3.11 (#84094) (diff) | |
download | ansible-a0495fc31497798a7a833ba7406a9729e1528dd8.tar.xz ansible-a0495fc31497798a7a833ba7406a9729e1528dd8.zip |
Update triple single quotes to triple double quotes (#84099)
* Update triple single quotes to triple double quotes
This change was fully automated.
The updated Python files have been verified to tokenize the same as the originals, except for the expected change in quoting of strings, which were verified through literal_eval.
* Manual conversion of docstring quotes
Diffstat (limited to 'test/support/windows-integration/plugins/modules/win_reboot.py')
-rw-r--r-- | test/support/windows-integration/plugins/modules/win_reboot.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/support/windows-integration/plugins/modules/win_reboot.py b/test/support/windows-integration/plugins/modules/win_reboot.py index 1431804143..7f1645673e 100644 --- a/test/support/windows-integration/plugins/modules/win_reboot.py +++ b/test/support/windows-integration/plugins/modules/win_reboot.py @@ -7,7 +7,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['stableinterface'], 'supported_by': 'core'} -DOCUMENTATION = r''' +DOCUMENTATION = r""" --- module: win_reboot short_description: Reboot a windows machine @@ -79,9 +79,9 @@ seealso: - module: reboot author: - Matt Davis (@nitzmahone) -''' +""" -EXAMPLES = r''' +EXAMPLES = r""" - name: Reboot the machine with all defaults win_reboot: @@ -115,9 +115,9 @@ EXAMPLES = r''' - name: Validate that the netlogon service has started, before running the next task win_reboot: test_command: 'exit (Get-Service -Name Netlogon).Status -ne "Running"' -''' +""" -RETURN = r''' +RETURN = r""" rebooted: description: True if the machine was rebooted. returned: always @@ -128,4 +128,4 @@ elapsed: returned: always type: float sample: 23.2 -''' +""" |