Skip to content

Commit

Permalink
Fix up builtin module references (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Jul 2, 2020
1 parent ff61de3 commit 7bb944b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/psexec.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
- For more information on this module and the various host requirements, see
U(https://github.com/jborean93/pypsexec).
seealso:
- module: raw
- module: ansible.builtin.raw
- module: ansible.windows.win_command
- module: community.windows.win_psexec
- module: ansible.windows.win_shell
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/win_lineinfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
choices: [ unix, windows ]
default: windows
seealso:
- module: assemble
- module: lineinfile
- module: ansible.builtin.assemble
- module: ansible.builtin.lineinfile
author:
- Brian Lloyd (@brianlloyd)
'''
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/win_psexec.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
U(https://technet.microsoft.com/en-us/sysinternals/bb897553.aspx)
seealso:
- module: community.windows.psexec
- module: raw
- module: ansible.builtin.raw
- module: ansible.windows.win_command
- module: ansible.windows.win_shell
author:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/win_robocopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
- If set, C(purge) and C(recurse) will be ignored.
type: str
notes:
- This is not a complete port of the M(synchronize) module. Unlike the M(synchronize) module this only performs the sync/copy on the remote machine,
not from the Ansible controller to the remote machine.
- This is not a complete port of the M(ansible.posix.synchronize) module. Unlike the M(ansible.posix.synchronize)
module this only performs the sync/copy on the remote machine, not from the Ansible controller to the remote machine.
- This module does not currently support all Robocopy flags.
seealso:
- module: ansible.posix.synchronize
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/win_unzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- Unzips compressed files and archives.
- Supports .zip files natively.
- Supports other formats supported by the Powershell Community Extensions (PSCX) module (basically everything 7zip supports).
- For non-Windows targets, use the M(unarchive) module instead.
- For non-Windows targets, use the M(ansible.builtin.unarchive) module instead.
requirements:
- PSCX
options:
Expand Down Expand Up @@ -52,7 +52,7 @@
has the ability to recursively unzip files within the src zip file provided and also functionality for many other compression types. If the destination
directory does not exist, it will be created before unzipping the file. Specifying rm parameter will force removal of the src file after extraction.
seealso:
- module: unarchive
- module: ansible.builtin.unarchive
author:
- Phil Schwartz (@schwartzmx)
'''
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/win_wait_for_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
type: int
default: 300
seealso:
- module: wait_for
- module: ansible.builtin.wait_for
- module: ansible.windows.win_wait_for
author:
- Charles Crossan (@crossan007)
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/win_wakeonlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
short_description: Send a magic Wake-on-LAN (WoL) broadcast packet
description:
- The C(win_wakeonlan) module sends magic Wake-on-LAN (WoL) broadcast packets.
- For non-Windows targets, use the M(wakeonlan) module instead.
- For non-Windows targets, use the M(community.general.wakeonlan) module instead.
options:
mac:
description:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/win_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description:
- Manages XML nodes, attributes and text, using xpath to select which xml nodes need to be managed.
- XML fragments, formatted as strings, are used to specify the desired state of a part or parts of XML files on remote Windows servers.
- For non-Windows targets, use the M(xml) module instead.
- For non-Windows targets, use the M(community.general.xml) module instead.
options:
attribute:
description:
Expand Down

0 comments on commit 7bb944b

Please sign in to comment.