From 8ccd0b800bf563fa9689fe403c26bdf265072f0f Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 30 Jan 2023 22:07:10 +0100 Subject: [PATCH 1/2] Fix broken seealso in synchronize module Module references must always have FQCN. --- plugins/modules/synchronize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/synchronize.py b/plugins/modules/synchronize.py index 260fac8..40fae71 100644 --- a/plugins/modules/synchronize.py +++ b/plugins/modules/synchronize.py @@ -212,7 +212,7 @@ notes: - link_destination is subject to the same limitations as the underlying rsync daemon. Hard links are only preserved if the relative subtrees of the source and destination are the same. Attempts to hardlink into a directory that is a subdirectory of the source will be prevented. seealso: -- module: copy +- module: ansible.builtin.copy - module: community.windows.win_robocopy author: - Timothy Appnel (@tima) From 42af89d019b959a4af4632ee9e74036040e21de2 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 30 Jan 2023 22:30:26 +0100 Subject: [PATCH 2/2] Add changelog fragment --- changelogs/fragments/413-synchronize-seealso.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelogs/fragments/413-synchronize-seealso.yml diff --git a/changelogs/fragments/413-synchronize-seealso.yml b/changelogs/fragments/413-synchronize-seealso.yml new file mode 100644 index 0000000..ac680af --- /dev/null +++ b/changelogs/fragments/413-synchronize-seealso.yml @@ -0,0 +1,2 @@ +trivial: + - "synchronize - fix broken ``seealso`` module reference (https://github.com/ansible-collections/ansible.posix/pull/413)."